Skip to content

Commit 2fbb843

Browse files
committed
tests pass
1 parent 2d8c6e5 commit 2fbb843

File tree

1 file changed

+1
-1
lines changed
  • crates/renderling/src/stage

1 file changed

+1
-1
lines changed

Diff for: crates/renderling/src/stage/cpu.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -840,7 +840,7 @@ impl NestedTransform {
840840
.as_ref()
841841
.map(|parent| parent.get_global_transform())
842842
.unwrap_or_default();
843-
Transform::from(Mat4::from(transform) * Mat4::from(parent_transform))
843+
Transform::from(Mat4::from(parent_transform) * Mat4::from(transform))
844844
}
845845

846846
pub fn global_transform_id(&self) -> Id<Transform> {

0 commit comments

Comments
 (0)