summaryrefslogtreecommitdiff
path: root/gl_calls.h
diff options
context:
space:
mode:
Diffstat (limited to 'gl_calls.h')
-rw-r--r--gl_calls.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/gl_calls.h b/gl_calls.h
deleted file mode 100644
index fa0a00c..0000000
--- a/gl_calls.h
+++ /dev/null
@@ -1,24 +0,0 @@
-struct default_gl_vertex_object {
- uint32 VertexArrayObject;
- uint32 VertexBufferObject;
- uint32 ElementBufferObject;
-};
-
-struct gl_vertex_shader {
- uint32 VertexArrayObject;
- uint32 VertexBufferObject;
-};
-
-static default_gl_vertex_object DefaultVerts;
-static gl_vertex_shader GL_DefaultVertexObjects;
-static uint32 DefaultVertexShader;
-static uint32 DefaultShaderProgram;
-static uint32 MaskShaderProgram;
-
-float GL_DefaultVertices[] = {
- 1.0f, 1.0f, 0.0f, 1.0f, 1.0f,
- 1.0f, -1.0f, 0.0f, 1.0f, 0.0f,
- -1.0f, -1.0f, 0.0f, 0.0f, 0.0f,
- -1.0f, 1.0f, 0.0f, 0.0f, 1.0f,
-};
-