1
0
Fork 0
forked from wry/wry

Merge pull request #395 from mahkoh/jorth/subsurface-rendering-order

render: fix sub-surface order
This commit is contained in:
mahkoh 2025-03-07 13:09:35 +01:00 committed by GitHub
commit 953c36a0fb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -386,7 +386,7 @@ impl Renderer<'_> {
if let Some(children) = children.deref() {
macro_rules! render {
($children:expr) => {
for child in $children.rev_iter() {
for child in $children.iter() {
if child.pending.get() {
continue;
}