ladybird/Libraries/LibWeb/Painting/SVGMaskable.h
InvalidUsernameException 28ba610f32 Everywhere: Avoid large rebuilds when editing (Immutable)Bitmap headers
This reduces the number of recompiled files as follow:
- Bitmap.h: 1309 -> 101
- ImmutableBitmap.h: 1218 -> 75
2025-11-28 18:32:48 +01:00

24 lines
582 B
C++

/*
* Copyright (c) 2024, Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibWeb/PixelUnits.h>
#pragma once
namespace Web::Painting {
class SVGMaskable {
public:
virtual ~SVGMaskable() = default;
virtual GC::Ptr<DOM::Node const> dom_node_of_svg() const = 0;
Optional<CSSPixelRect> get_masking_area_of_svg() const;
Optional<Gfx::MaskKind> get_mask_type_of_svg() const;
RefPtr<Gfx::ImmutableBitmap> calculate_mask_of_svg(DisplayListRecordingContext&, CSSPixelRect const& masking_area) const;
};
}