mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:17:35 +00:00
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:
parent
6f46bff4df
commit
e63f68661f
11 changed files with 15 additions and 14 deletions
|
@ -20,7 +20,7 @@ SVGDecodedImageData::SVGDecodedImageData()
|
|||
|
||||
SVGDecodedImageData::~SVGDecodedImageData() = default;
|
||||
|
||||
RefPtr<Gfx::Bitmap const> SVGDecodedImageData::bitmap(size_t) const
|
||||
RefPtr<Gfx::Bitmap const> SVGDecodedImageData::bitmap(size_t, Gfx::IntSize) const
|
||||
{
|
||||
return nullptr;
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@ public:
|
|||
static ErrorOr<NonnullRefPtr<SVGDecodedImageData>> create(ByteBuffer encoded_svg);
|
||||
virtual ~SVGDecodedImageData() override;
|
||||
|
||||
virtual RefPtr<Gfx::Bitmap const> bitmap(size_t frame_index) const override;
|
||||
virtual RefPtr<Gfx::Bitmap const> bitmap(size_t frame_index, Gfx::IntSize) const override;
|
||||
|
||||
virtual Optional<CSSPixels> intrinsic_width() const override;
|
||||
virtual Optional<CSSPixels> intrinsic_height() const override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue