/* * Copyright (c) 2024, MacDue * * SPDX-License-Identifier: BSD-2-Clause */ #include namespace Web::Painting { GC_DEFINE_ALLOCATOR(SVGClipPaintable); GC::Ref SVGClipPaintable::create(Layout::SVGClipBox const& layout_box) { return layout_box.heap().allocate(layout_box); } SVGClipPaintable::SVGClipPaintable(Layout::SVGClipBox const& layout_box) : SVGPaintable(layout_box) { } }