1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:37:43 +00:00

LibWeb: Paint bitmaps with rounded_int_rect(), not enclosing_int_rect()

This fixes the issue where an `<img>` set to its native size would
sometimes still appear blurry, because it had a fractional position,
causing `enclosing_int_rect()` to expand by 1px.
This commit is contained in:
Sam Atkins 2021-09-21 15:36:32 +01:00 committed by Andreas Kling
parent 0b7eefd4e5
commit e07cf6f41b
3 changed files with 3 additions and 3 deletions

View file

@ -39,7 +39,7 @@ void CanvasBox::paint(PaintContext& context, PaintPhase phase)
return;
if (dom_node().bitmap())
context.painter().draw_scaled_bitmap(enclosing_int_rect(absolute_rect()), *dom_node().bitmap(), dom_node().bitmap()->rect(), 1.0f, Gfx::Painter::ScalingMode::BilinearBlend);
context.painter().draw_scaled_bitmap(rounded_int_rect(absolute_rect()), *dom_node().bitmap(), dom_node().bitmap()->rect(), 1.0f, Gfx::Painter::ScalingMode::BilinearBlend);
}
}