mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 12:48:10 +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
|
@ -7,7 +7,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <AK/RefCounted.h>
|
||||
#include <LibGfx/Forward.h>
|
||||
#include <LibGfx/Size.h>
|
||||
#include <LibJS/Heap/Cell.h>
|
||||
#include <LibWeb/PixelUnits.h>
|
||||
|
||||
|
@ -18,7 +18,7 @@ class DecodedImageData : public RefCounted<DecodedImageData> {
|
|||
public:
|
||||
virtual ~DecodedImageData();
|
||||
|
||||
virtual RefPtr<Gfx::Bitmap const> bitmap(size_t frame_index) const = 0;
|
||||
virtual RefPtr<Gfx::Bitmap const> bitmap(size_t frame_index, Gfx::IntSize = {}) const = 0;
|
||||
virtual int frame_duration(size_t frame_index) const = 0;
|
||||
|
||||
virtual size_t frame_count() const = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue