2021-09-19 15:58:26 +01:00
|
|
|
/*
|
2022-10-27 14:48:52 +01:00
|
|
|
* Copyright (c) 2021-2022, Sam Atkins <atkinssj@serenityos.org>
|
2021-09-19 15:58:26 +01:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-11-12 20:12:56 +00:00
|
|
|
#include <LibWeb/Forward.h>
|
2021-09-19 15:58:26 +01:00
|
|
|
#include <LibWeb/Painting/BorderPainting.h>
|
|
|
|
#include <LibWeb/Painting/PaintContext.h>
|
|
|
|
|
|
|
|
namespace Web::Painting {
|
|
|
|
|
2022-10-27 14:48:52 +01:00
|
|
|
void paint_background(PaintContext&, Layout::NodeWithStyleAndBoxModelMetrics const&, CSSPixelRect const&, Color background_color, CSS::ImageRendering, Vector<CSS::BackgroundLayerData> const*, BorderRadiiData const&);
|
2021-09-19 15:58:26 +01:00
|
|
|
|
|
|
|
}
|