mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 22:45:08 +00:00

This fixes the Serenity logo vanishing after scrolling on the 4th birthday post. The previous check did not account for any translation in the painter. This now uses the painter's clip rect and translation to work out if a rect is visible. It also makes use of `absolute_paint_rect()` rather than `absolute_rect()` which can account for things like box-shadows.
49 lines
1.5 KiB
C++
49 lines
1.5 KiB
C++
/*
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/Painting/CanvasPaintable.h>
|
|
|
|
namespace Web::Painting {
|
|
|
|
NonnullRefPtr<CanvasPaintable> CanvasPaintable::create(Layout::CanvasBox const& layout_box)
|
|
{
|
|
return adopt_ref(*new CanvasPaintable(layout_box));
|
|
}
|
|
|
|
CanvasPaintable::CanvasPaintable(Layout::CanvasBox const& layout_box)
|
|
: PaintableBox(layout_box)
|
|
{
|
|
}
|
|
|
|
Layout::CanvasBox const& CanvasPaintable::layout_box() const
|
|
{
|
|
return static_cast<Layout::CanvasBox const&>(layout_node());
|
|
}
|
|
|
|
void CanvasPaintable::paint(PaintContext& context, PaintPhase phase) const
|
|
{
|
|
if (!layout_box().is_visible())
|
|
return;
|
|
|
|
PaintableBox::paint(context, phase);
|
|
|
|
if (phase == PaintPhase::Foreground) {
|
|
auto canvas_rect = absolute_rect().to_rounded<int>();
|
|
ScopedCornerRadiusClip corner_clip { context.painter(), canvas_rect, normalized_border_radii_data(ShrinkRadiiForBorders::Yes) };
|
|
|
|
// FIXME: This should be done at a different level.
|
|
if (is_out_of_view(context))
|
|
return;
|
|
|
|
if (layout_box().dom_node().bitmap()) {
|
|
// FIXME: Remove this const_cast.
|
|
const_cast<HTML::HTMLCanvasElement&>(layout_box().dom_node()).present();
|
|
context.painter().draw_scaled_bitmap(canvas_rect, *layout_box().dom_node().bitmap(), layout_box().dom_node().bitmap()->rect(), 1.0f, to_gfx_scaling_mode(computed_values().image_rendering()));
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|