diff options
Diffstat (limited to 'progs/perf/glmain.h')
-rw-r--r-- | progs/perf/glmain.h | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/progs/perf/glmain.h b/progs/perf/glmain.h index 50480a80c0..d9bcd5f4e2 100644 --- a/progs/perf/glmain.h +++ b/progs/perf/glmain.h @@ -26,7 +26,6 @@ #define GL_GLEXT_PROTOTYPES #include <GL/glew.h> -#include <stdio.h> #include <stdlib.h> #include <math.h> @@ -41,6 +40,18 @@ PerfGetTime(void); extern void PerfSwapBuffers(void); +extern GLuint +PerfCheckerTexture(GLsizei width, GLsizei height); + +extern GLuint +PerfShaderProgram(const char *vertShader, const char *fragShader); + +extern int +PerfReshapeWindow( unsigned w, unsigned h ); + +extern GLboolean +PerfExtensionSupported(const char *ext); + /** Test programs must implement these functions **/ @@ -48,6 +59,9 @@ extern void PerfInit(void); extern void +PerfNextRound(void); + +extern void PerfDraw(void); |