quick backup
[demo] / src / opengl / opengl.cc
index f05ea61..417966d 100644 (file)
@@ -2,9 +2,11 @@
 #include <stdio.h>
 
 #include "opengl/opengl.h"
-#include "common-ui.h"
 
 extern GLFWwindow *win;
+extern int win_h;
+extern int win_w;
+
 bool init_opengl()
 {
        if(!glfwInit()) {
@@ -22,6 +24,10 @@ bool init_opengl()
        glfwMakeContextCurrent(win);
 
        glewInit();
+
+       glEnable(GL_DEPTH_TEST);
+       glEnable(GL_CULL_FACE);
+       
        return true;
 }
 
@@ -31,10 +37,4 @@ void cleanup_opengl()
                glfwDestroyWindow(win);
        }
        glfwTerminate();
-}
-
-void display_opengl()
-{
-       glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
-       glClearColor(0.5, 0.5, 0.5, 1.0);
 }
\ No newline at end of file