1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 04:47:34 +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:
Andreas Kling 2023-05-20 16:40:44 +02:00
parent 6f46bff4df
commit e63f68661f
11 changed files with 15 additions and 14 deletions

View file

@ -6,6 +6,7 @@
#pragma once
#include <LibGfx/Size.h>
#include <LibWeb/PixelUnits.h>
namespace Web::Layout {
@ -18,7 +19,7 @@ public:
virtual Optional<CSSPixels> intrinsic_height() const = 0;
virtual Optional<float> intrinsic_aspect_ratio() const = 0;
virtual RefPtr<Gfx::Bitmap const> current_image_bitmap() const = 0;
virtual RefPtr<Gfx::Bitmap const> current_image_bitmap(Gfx::IntSize) const = 0;
virtual void set_visible_in_viewport(bool) = 0;
};