summaryrefslogtreecommitdiff
path: root/progs
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-09-22 11:14:58 -0600
committerBrian Paul <brianp@vmware.com>2009-09-22 11:15:11 -0600
commit67d7021ae06e1c3559f3c0c35162768fcd1402d4 (patch)
treeda9a9636e4a71f89df7f5581d0699641d6112513 /progs
parented113da12e4fdc77b477d44113dfa450e19b80d0 (diff)
progs/perf: add missing texture enable in fbobind.c
Diffstat (limited to 'progs')
-rw-r--r--progs/perf/fbobind.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/progs/perf/fbobind.c b/progs/perf/fbobind.c
index 99a56ef2f7..fb52a93a2f 100644
--- a/progs/perf/fbobind.c
+++ b/progs/perf/fbobind.c
@@ -105,6 +105,8 @@ PerfInit(void)
/* clear the FBO */
glClear(GL_COLOR_BUFFER_BIT);
}
+
+ glEnable(GL_TEXTURE_2D);
}