diff options
author | Brian Paul <[email protected]> | 2009-09-22 11:14:58 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-09-22 11:15:11 -0600 |
commit | 67d7021ae06e1c3559f3c0c35162768fcd1402d4 (patch) | |
tree | da9a9636e4a71f89df7f5581d0699641d6112513 /progs/perf/fbobind.c | |
parent | ed113da12e4fdc77b477d44113dfa450e19b80d0 (diff) |
progs/perf: add missing texture enable in fbobind.c
Diffstat (limited to 'progs/perf/fbobind.c')
-rw-r--r-- | progs/perf/fbobind.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/progs/perf/fbobind.c b/progs/perf/fbobind.c index 99a56ef2f79..fb52a93a2f6 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); } |