diff options
author | Keith Whitwell <[email protected]> | 2009-03-10 13:11:23 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-03-10 13:11:23 +0000 |
commit | a58065d4e2fc29644d804c92be773731242664c5 (patch) | |
tree | a5a7387d97c3b4a2f4138769ab90cce54e9156df /progs/tests/debugger.c | |
parent | 225de01f83b58a09adfad47a5d71bece63a6ebfd (diff) |
progs/tests: compile with SCons and glew
Also get mingw cross-compilation of these tests working
Diffstat (limited to 'progs/tests/debugger.c')
-rw-r--r-- | progs/tests/debugger.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/progs/tests/debugger.c b/progs/tests/debugger.c index 4c6955bcfc6..1c2f9bebca6 100644 --- a/progs/tests/debugger.c +++ b/progs/tests/debugger.c @@ -9,7 +9,7 @@ #include <stdio.h> #include <stdlib.h> #include <math.h> -#define GL_GLEXT_PROTOTYPES +#include <GL/glew.h> #include <GL/glut.h> @@ -81,6 +81,7 @@ find_line_column(const GLubyte *string, const GLubyte *pos, #define NV_FRAGMENT_PROGRAM 4 + struct breakpoint { enum {PIXEL, LINE} type; int x, y; @@ -101,7 +102,7 @@ static void Debugger2(GLenum target, GLvoid *data) { static GLuint skipCount = 0; const GLubyte *ln; - GLint pos, line, column; + GLint pos = 0, line, column; GLint id; int progType; GLint len; @@ -721,6 +722,7 @@ int main( int argc, char *argv[] ) glutInitWindowSize( 200, 200 ); glutInitDisplayMode( GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH ); glutCreateWindow(argv[0]); + glewInit(); glutReshapeFunc( Reshape ); glutKeyboardFunc( Key ); glutSpecialFunc( SpecialKey ); |