summaryrefslogtreecommitdiff
path: root/progs
diff options
context:
space:
mode:
Diffstat (limited to 'progs')
-rw-r--r--progs/tests/pbo.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/progs/tests/pbo.c b/progs/tests/pbo.c
index 04b7757263..a74e8e148b 100644
--- a/progs/tests/pbo.c
+++ b/progs/tests/pbo.c
@@ -103,6 +103,7 @@ Display( void )
/*** Draw from the DrawPBO */
glBindBufferARB(GL_PIXEL_UNPACK_BUFFER_EXT, DrawPBO);
glDrawPixels(ImgWidth, ImgHeight, ImgFormat, GL_UNSIGNED_BYTE, 0);
+ glBindBufferARB(GL_PIXEL_UNPACK_BUFFER_EXT, 0);
/* do readpixels, drawpixels */
glRasterPos2i(BPosX, 5);
@@ -138,6 +139,7 @@ Display( void )
/*** draw from the Temp PBO */
glBindBufferARB(GL_PIXEL_UNPACK_BUFFER_EXT, TempPBO);
glDrawPixels(ImgWidth, ImgHeight, ReadFormat, ReadType, 0);
+ glBindBufferARB(GL_PIXEL_UNPACK_BUFFER_EXT, 0);
/* do copypixels */
glRasterPos2i(CPosX, 5);