diff options
author | Egor Ananyin <ananinegor@gmail.com> | 2021-07-23 13:19:16 +0300 |
---|---|---|
committer | Ali Mohammad Pur <Ali.mpfard@gmail.com> | 2021-07-24 22:02:28 +0430 |
commit | f567414f65ef01c07bd9298de585ee7fafbb9ea0 (patch) | |
tree | 59356a97aa8b0db2e7ef3b1421677e41933df6f3 /Userland/Libraries/LibWeb/Painting/StackingContext.h | |
parent | 0e6ba6e1d39e899df0beb5d3678ac9dc512d3d5c (diff) | |
download | serenity-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.h | 2 |
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&); }; } |