summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Painting/StackingContext.h
diff options
context:
space:
mode:
authorEgor Ananyin <ananinegor@gmail.com>2021-07-23 13:19:16 +0300
committerAli Mohammad Pur <Ali.mpfard@gmail.com>2021-07-24 22:02:28 +0430
commitf567414f65ef01c07bd9298de585ee7fafbb9ea0 (patch)
tree59356a97aa8b0db2e7ef3b1421677e41933df6f3 /Userland/Libraries/LibWeb/Painting/StackingContext.h
parent0e6ba6e1d39e899df0beb5d3678ac9dc512d3d5c (diff)
downloadserenity-f567414f65ef01c07bd9298de585ee7fafbb9ea0.zip
LibWeb: Draw elements with opacity in a separate stacking context
Diffstat (limited to 'Userland/Libraries/LibWeb/Painting/StackingContext.h')
-rw-r--r--Userland/Libraries/LibWeb/Painting/StackingContext.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/Painting/StackingContext.h b/Userland/Libraries/LibWeb/Painting/StackingContext.h
index 687e887b49..1e8142718b 100644
--- a/Userland/Libraries/LibWeb/Painting/StackingContext.h
+++ b/Userland/Libraries/LibWeb/Painting/StackingContext.h
@@ -35,6 +35,8 @@ private:
Box& m_box;
StackingContext* const m_parent { nullptr };
Vector<StackingContext*> m_children;
+
+ void paint_internal(PaintContext&);
};
}