diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2004-09-23 17:32:12 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2004-09-23 17:32:12 +0000 |
commit | 1fd4a55d09b6127bb4f0af5215d21e37be0e743e (patch) | |
tree | 9393dffb6f4ce78016bbe5192112b022e7a55aa0 | |
parent | 7e0c5888eaf72483319533a805ce491e2ea7de92 (diff) |
removed hacked GL tokens, fixed a printf
-rw-r--r-- | progs/tests/pbo.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/progs/tests/pbo.c b/progs/tests/pbo.c index 83e9cbfbac..04b7757263 100644 --- a/progs/tests/pbo.c +++ b/progs/tests/pbo.c @@ -13,14 +13,6 @@ #include <math.h> #include <GL/glut.h> -/* XXX temporary hack */ -#ifndef GL_PIXEL_PACK_BUFFER_EXT -#define GL_PIXEL_PACK_BUFFER_EXT 0x88EB -#define GL_PIXEL_UNPACK_BUFFER_EXT 0x88EC -#define GL_PIXEL_PACK_BUFFER_BINDING_EXT 0x88ED -#define GL_PIXEL_UNPACK_BUFFER_BINDING_EXT 0x88EF -#endif - #include "../util/readtex.c" /* a hack, I know */ #define IMAGE_FILE "../images/girl.rgb" @@ -100,7 +92,7 @@ Display( void ) PrintString("f = toggle front/back s = toggle scale/bias b = benchmark"); glRasterPos2i(5, ImgHeight+40); - PrintString("GL_ARB_pixel_buffer_object test"); + PrintString("GL_EXT_pixel_buffer_object test"); /* draw original image */ glRasterPos2i(APosX, 5); |