summaryrefslogtreecommitdiff
path: root/gl_calls.h
diff options
context:
space:
mode:
authorFox Caminiti <fox@foxcam.net>2022-12-16 20:16:43 -0500
committerFox Caminiti <fox@foxcam.net>2022-12-16 20:16:43 -0500
commitbedd6906eabdd513042d6a178d4dc56a3a41d1d3 (patch)
tree2bcbd3e46ae61e583707a2ccc5b3f5cfeacb61a8 /gl_calls.h
parentcdb9e1f7240cb0716b7d99df5e1fd7c3fc3407a8 (diff)
v3, file/build organization
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,
-};
-