From e017b675d96c58924071ca6c739bbd7910a2b2b4 Mon Sep 17 00:00:00 2001 From: Micha White Date: Mon, 17 Oct 2022 22:45:31 -0400 Subject: Depth ordering --- src/camera.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/camera.rs') diff --git a/src/camera.rs b/src/camera.rs index 3ae33b4..e77da40 100644 --- a/src/camera.rs +++ b/src/camera.rs @@ -175,7 +175,7 @@ impl Camera { let projection_matrix = Matrix4::new( self.inverse_aspect_ratio * self.zoom, 0.0, 0.0, 0.0, 0.0, self.zoom, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, + 0.0, 0.0, 1.0 / 256.0, 0.0, 0.0, 0.0, 0.0, 1.0 ); -- cgit v1.2.3