backup - needs fixing
[demo] / src / opengl / opengl.cc
index f6a7cef..00b42f5 100644 (file)
@@ -13,7 +13,11 @@ static void clear(float r, float g, float b);
 static void viewport(int x, int y, int width, int height);
 static void zbuffer(bool enable);
 static void cull_face(Gfx_cull_face cf);
-static void reshape(int width, int height) {};
+static void reshape(int width, int height) {}
+static void wireframe(bool enable);
+static void swapbuffers();
+static void begin_drawing();
+static void end_drawing();
 
 bool init_opengl()
 {
@@ -43,6 +47,10 @@ bool init_opengl()
        gfx_zbuffer = zbuffer;
        gfx_cull_face = cull_face;
        gfx_reshape = reshape;
+       gfx_wireframe = wireframe;
+       gfx_swapbuffers = swapbuffers;
+       gfx_begin_drawing = begin_drawing;
+       gfx_end_drawing = end_drawing;
 
        // glPolygonMode(GL_FRONT_AND_BACK, GL_LINE);
        return true;
@@ -91,3 +99,24 @@ static void cull_face(Gfx_cull_face cf)
                break;
        }
 }
+
+static void wireframe(bool enabled)
+{
+       if(enabled)
+               glPolygonMode(GL_FRONT_AND_BACK, GL_LINE);
+       else
+               glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);
+}
+
+static void swapbuffers()
+{
+       glfwSwapBuffers(win);
+}
+
+static void begin_drawing()
+{
+}
+
+static void end_drawing()
+{
+}