1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-10 03:57:35 +00:00

LibWeb: Enable bilinear blending for bitmaps

This is slower, but looks a lot nicer. :^)
This commit is contained in:
Sam Atkins 2021-09-20 19:55:40 +01:00 committed by Andreas Kling
parent 1c807410cd
commit a50f4d2fc9
3 changed files with 3 additions and 3 deletions

View file

@ -100,7 +100,7 @@ void CanvasRenderingContext2D::draw_image(const HTMLImageElement& image_element,
Gfx::FloatRect dst_rect = { x, y, (float)image_element.bitmap()->width(), (float)image_element.bitmap()->height() };
auto rect = m_transform.map(dst_rect);
painter->draw_scaled_bitmap(enclosing_int_rect(rect), *image_element.bitmap(), src_rect);
painter->draw_scaled_bitmap(enclosing_int_rect(rect), *image_element.bitmap(), src_rect, 1.0f, Gfx::Painter::ScalingMode::BilinearBlend);
}
void CanvasRenderingContext2D::scale(float sx, float sy)