From 5011ea1b44c055893c691e923f4e82cdaebd5b0c Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Wed, 13 Nov 2024 12:27:58 -0500 Subject: move gl functions out of balls.c --- gl.h | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 gl.h (limited to 'gl.h') diff --git a/gl.h b/gl.h new file mode 100644 index 0000000..a863aad --- /dev/null +++ b/gl.h @@ -0,0 +1,3 @@ +void initGL(int argc, char *argv[]); +void genBuffers(GLuint *vertexVAO, GLuint *vertexVBO, GLuint *colorVBO, int nBalls); +void freeGL(GLuint vertexVAO, GLuint vertexVBO, GLuint colorVBO); -- cgit v1.2.3