progs/perf: add missing texture enable in fbobind.c
authorBrian Paul <brianp@vmware.com>
Tue, 22 Sep 2009 17:14:58 +0000 (11:14 -0600)
committerBrian Paul <brianp@vmware.com>
Tue, 22 Sep 2009 17:15:11 +0000 (11:15 -0600)
progs/perf/fbobind.c

index 99a56ef2f79678aa605be1eb850eb5001d7e0ccb..fb52a93a2f67b1901d154f1e248f877aa573daec 100644 (file)
@@ -105,6 +105,8 @@ PerfInit(void)
       /* clear the FBO */
       glClear(GL_COLOR_BUFFER_BIT);
    }
+
+   glEnable(GL_TEXTURE_2D);
 }