Bug 1683399 - Add some dbg if compositor kind doesn't match. r=gw

Differential Revision: https://phabricator.services.mozilla.com/D100160
This commit is contained in:
Jeff Muizelaar 2020-12-18 20:17:23 +00:00
parent 6b5716d415
commit 5fef30be08

View File

@ -3364,7 +3364,8 @@ impl Renderer {
(CompositorKind::Draw { .. }, CompositorKind::Native { .. }) => {
true
}
(_, _) => {
(current_compositor_kind, active_doc_compositor_kind) => {
dbg!(current_compositor_kind, active_doc_compositor_kind);
unreachable!();
}
};