aboutsummaryrefslogtreecommitdiff
path: root/src/fw/opengl.odin
diff options
context:
space:
mode:
Diffstat (limited to 'src/fw/opengl.odin')
-rw-r--r--src/fw/opengl.odin4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fw/opengl.odin b/src/fw/opengl.odin
index ab2bb81..3419b48 100644
--- a/src/fw/opengl.odin
+++ b/src/fw/opengl.odin
@@ -128,8 +128,8 @@ gl_init :: proc() {
gl.Enable(gl.DEPTH_TEST)
gl.DepthFunc(gl.LEQUAL)
- // gl.Enable(gl.BLEND);
- // gl.BlendFunc(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA);
+ gl.Enable(gl.BLEND);
+ gl.BlendFunc(gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA);
renderer.vt.start_frame = gl_start_frame
renderer.vt.end_frame = gl_end_frame