From: Brian Paul Date: Tue, 22 Sep 2009 17:14:58 +0000 (-0600) Subject: progs/perf: add missing texture enable in fbobind.c X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=67d7021ae06e1c3559f3c0c35162768fcd1402d4;p=mesa.git progs/perf: add missing texture enable in fbobind.c --- 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); }