1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 07:27:45 +00:00

LibWeb/Painting: Remove Save and Restore commands in RecordingPainter

Removing State and Restore reduces painting commands count by 30-50%
on an average website.

Due to this change, it was also necessary to replace AddClipRect with
SetClipRect command.
This commit is contained in:
Aliaksandr Kalenik 2023-10-26 04:12:57 +02:00 committed by Andreas Kling
parent 0388766531
commit 04a4ffaa3d
2 changed files with 22 additions and 35 deletions

View file

@ -83,15 +83,7 @@ struct DrawScaledBitmap {
[[nodiscard]] CommandResult execute(CommandExecutionState&) const;
};
struct SaveState {
[[nodiscard]] CommandResult execute(CommandExecutionState&) const;
};
struct RestoreState {
[[nodiscard]] CommandResult execute(CommandExecutionState&) const;
};
struct AddClipRect {
struct SetClipRect {
Gfx::IntRect rect;
[[nodiscard]] CommandResult execute(CommandExecutionState&) const;
@ -361,9 +353,7 @@ using PaintingCommand = Variant<
DrawText,
FillRect,
DrawScaledBitmap,
SaveState,
RestoreState,
AddClipRect,
SetClipRect,
ClearClipRect,
SetFont,
PushStackingContext,
@ -454,7 +444,6 @@ public:
void draw_text_run(Gfx::IntPoint baseline_start, Utf8View string, Gfx::Font const& font, Color color, Gfx::IntRect const& rect);
void add_clip_rect(Gfx::IntRect const& rect);
void clear_clip_rect();
void translate(int dx, int dy);
void translate(Gfx::IntPoint delta);
@ -510,6 +499,7 @@ public:
struct State {
Gfx::AffineTransform translation;
Optional<Gfx::IntRect> clip_rect;
};
State& state() { return m_state_stack.last(); }
State const& state() const { return m_state_stack.last(); }