2026-02-17 13:24:44 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2026, Tim Ledbetter <tim.ledbetter@ladybird.org>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <LibWeb/Painting/SVGPatternPaintable.h>
|
|
|
|
|
|
|
|
|
|
namespace Web::Painting {
|
|
|
|
|
|
2026-05-07 08:38:05 -03:00
|
|
|
NonnullRefPtr<SVGPatternPaintable> SVGPatternPaintable::create(Layout::SVGPatternBox const& layout_box)
|
2026-02-17 13:24:44 -03:00
|
|
|
{
|
2026-05-07 08:38:05 -03:00
|
|
|
return adopt_ref(*new SVGPatternPaintable(layout_box));
|
2026-02-17 13:24:44 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SVGPatternPaintable::SVGPatternPaintable(Layout::SVGPatternBox const& layout_box)
|
|
|
|
|
: SVGPaintable(layout_box)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|