summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 117477a..eeea7d7 100644
--- a/src/main.c
+++ b/src/main.c
@@ -56,10 +56,12 @@ int InitialiseWindowsSystem()
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
- glFrustum(-1, 1, -1, 1, 1, 1000);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
-
+
+ glEnable(GL_BLEND);
+ glEnable(GL_DEPTH_TEST);
+
return 0;
}