summaryrefslogtreecommitdiff
path: root/src/platform_glfw.c
diff options
context:
space:
mode:
authoronelin <oscar@nelin.dk>2025-12-03 23:02:54 +0000
committeronelin <oscar@nelin.dk>2025-12-18 21:14:21 +0000
commit3a24982d1ed318b26e5ea191db63cedeb9e8d43f (patch)
tree23dc26c6da3e8c831a9e26be1aec3bfdc6e2049f /src/platform_glfw.c
parent7e24f38e9d7c5ea04112c59d3f8dc74bc938da7e (diff)
Try linear filtering:)
Diffstat (limited to 'src/platform_glfw.c')
-rw-r--r--src/platform_glfw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/platform_glfw.c b/src/platform_glfw.c
index 9b71516..394695d 100644
--- a/src/platform_glfw.c
+++ b/src/platform_glfw.c
@@ -220,8 +220,8 @@ static void render_init_opengl(Window *restrict w, const u32 flags) {
ctx->Enable(GL_CULL_FACE);
ctx->CullFace(GL_BACK);
- ctx->Enable(GL_DEPTH_TEST);
- ctx->DepthFunc(GL_LESS);
+ //ctx->Enable(GL_DEPTH_TEST);
+ //ctx->DepthFunc(GL_LESS);
w->context = ctx;
w->renderer = WINDOW_RENDERER_OPENGL;