Merge pull request #395 from mahkoh/jorth/subsurface-rendering-order
render: fix sub-surface order
This commit is contained in:
commit
953c36a0fb
1 changed files with 1 additions and 1 deletions
|
|
@ -386,7 +386,7 @@ impl Renderer<'_> {
|
||||||
if let Some(children) = children.deref() {
|
if let Some(children) = children.deref() {
|
||||||
macro_rules! render {
|
macro_rules! render {
|
||||||
($children:expr) => {
|
($children:expr) => {
|
||||||
for child in $children.rev_iter() {
|
for child in $children.iter() {
|
||||||
if child.pending.get() {
|
if child.pending.get() {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue