From bedd6906eabdd513042d6a178d4dc56a3a41d1d3 Mon Sep 17 00:00:00 2001 From: Fox Caminiti Date: Fri, 16 Dec 2022 20:16:43 -0500 Subject: v3, file/build organization --- gl_calls.h | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 gl_calls.h (limited to 'gl_calls.h') 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, -}; - -- cgit v1.2.3