LibWeb: Have ImageProvider bitmap getter take optional size argument

This allows the painting subsystem to request a bitmap with the exact
size needed for painting, instead of being limited to "just give me a
bitmap" (which was perfectly enough for raster images, but not for
vector graphics).
This commit is contained in:
Andreas Kling 2023-05-20 16:40:44 +02:00
parent 6f46bff4df
commit e63f68661f
Notes: sideshowbarker 2024-07-17 06:33:00 +09:00
11 changed files with 15 additions and 14 deletions

View file

@ -132,10 +132,10 @@ Optional<float> HTMLImageElement::intrinsic_aspect_ratio() const
return {};
}
RefPtr<Gfx::Bitmap const> HTMLImageElement::current_image_bitmap() const
RefPtr<Gfx::Bitmap const> HTMLImageElement::current_image_bitmap(Gfx::IntSize size) const
{
if (auto data = m_current_request->image_data())
return data->bitmap(m_current_frame_index);
return data->bitmap(m_current_frame_index, size);
return nullptr;
}