ladybird/Libraries/LibWeb/Painting/SVGPaintable.h
Tim Ledbetter cfc6439c12 LibWeb: Use shape-rendering to control anti aliasing for SVG paths
Anti-aliasing is disabled if `shape-rendering` is set to
`optimizeSpeed` or `crispEdges`.
2025-08-19 09:47:28 +01:00

33 lines
707 B
C++

/*
* Copyright (c) 2022, Andreas Kling <andreas@ladybird.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibWeb/Layout/SVGBox.h>
#include <LibWeb/Painting/PaintableBox.h>
namespace Web::Painting {
class SVGPaintable : public PaintableBox {
GC_CELL(SVGPaintable, PaintableBox);
public:
Layout::SVGBox const& layout_box() const;
protected:
virtual bool is_svg_paintable() const override { return true; }
SVGPaintable(Layout::SVGBox const&);
virtual CSSPixelRect compute_absolute_rect() const override;
ShouldAntiAlias should_anti_alias() const;
};
template<>
inline bool Paintable::fast_is<SVGPaintable>() const { return is_svg_paintable(); }
}