A few fixes to the compositor for WebRender

This commit is contained in:
Patrick Walton 2019-06-04 22:24:36 -07:00 committed by Josh Matthews
parent 2f9c9cefdb
commit ae42048540
2 changed files with 5 additions and 4 deletions

View file

@ -197,10 +197,10 @@ pub struct EmbedderCoordinates {
}
impl EmbedderCoordinates {
pub fn get_flipped_viewport(&self) -> FramebufferIntRect {
pub fn get_flipped_viewport(&self) -> DeviceIntRect {
let fb_height = self.framebuffer.height;
let mut view = self.viewport.clone();
view.origin.y = fb_height - view.origin.y - view.size.height;
FramebufferIntRect::from_untyped(&view.to_untyped())
DeviceIntRect::from_untyped(&view.to_untyped())
}
}