From 23419bf57c9b0abc2597a24d513de66f3341620d Mon Sep 17 00:00:00 2001 From: T_chan Date: Wed, 26 Jan 2022 19:46:31 +0000 Subject: [PATCH] dont put objects on the far plane --- samples/lerabot01/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/lerabot01/main.c b/samples/lerabot01/main.c index 392d325..9495dd6 100644 --- a/samples/lerabot01/main.c +++ b/samples/lerabot01/main.c @@ -311,7 +311,7 @@ void DrawGLScene() DrawTexturedQuad(texture[0], l1_pos[0], l1_pos[1], l1_pos[2]); for (int i = 0; i < 5; i++) - DrawTexturedQuad(texture[0], i * 20, 0.0f, 0.0f); // Draw the textured quad. + DrawTexturedQuad(texture[0], i * 20, 0.0f, 0.1f); // Draw the textured quad. // swap buffers to display, since we're double buffered. glKosSwapBuffers();