mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
Instead of painting DecodedImageData by first asking it for a bitmap
and then painting that, this commit adds two new APIs:
- frame_rect(frame_index):
Gets the size of the animation frame at the given index.
- paint(context, ...):
Paints the DecodedImageData into a DisplayListRecordingContext.
The main powerful thing here is that this allows SVGDecodedImageData
to render itself using the GPU when available.
43 lines
1.4 KiB
C++
43 lines
1.4 KiB
C++
/*
|
|
* Copyright (c) 2023-2025, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/RefCounted.h>
|
|
#include <LibGfx/ScalingMode.h>
|
|
#include <LibGfx/Size.h>
|
|
#include <LibJS/Heap/Cell.h>
|
|
#include <LibWeb/Forward.h>
|
|
#include <LibWeb/PixelUnits.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
// https://html.spec.whatwg.org/multipage/images.html#img-req-data
|
|
class DecodedImageData : public JS::Cell {
|
|
GC_CELL(DecodedImageData, JS::Cell);
|
|
|
|
public:
|
|
virtual ~DecodedImageData();
|
|
|
|
virtual Optional<Gfx::IntRect> frame_rect([[maybe_unused]] size_t frame_index) const = 0;
|
|
virtual void paint([[maybe_unused]] DisplayListRecordingContext&, [[maybe_unused]] size_t frame_index, [[maybe_unused]] Gfx::IntRect dst_rect, [[maybe_unused]] Gfx::IntRect clip_rect, [[maybe_unused]] Gfx::ScalingMode scaling_mode) const = 0;
|
|
|
|
virtual RefPtr<Gfx::ImmutableBitmap> 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;
|
|
virtual size_t loop_count() const = 0;
|
|
virtual bool is_animated() const = 0;
|
|
|
|
virtual Optional<CSSPixels> intrinsic_width() const = 0;
|
|
virtual Optional<CSSPixels> intrinsic_height() const = 0;
|
|
virtual Optional<CSSPixelFraction> intrinsic_aspect_ratio() const = 0;
|
|
|
|
protected:
|
|
DecodedImageData();
|
|
};
|
|
|
|
}
|