diff options
Diffstat (limited to 'progs/perf/glmain.h')
-rw-r--r-- | progs/perf/glmain.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/progs/perf/glmain.h b/progs/perf/glmain.h index fe11d7235e..d9bcd5f4e2 100644 --- a/progs/perf/glmain.h +++ b/progs/perf/glmain.h @@ -40,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 **/ @@ -47,6 +59,9 @@ extern void PerfInit(void); extern void +PerfNextRound(void); + +extern void PerfDraw(void); |