progs/perf: add missing texture enable in fbobind.c

This commit is contained in:
Brian Paul 2009-09-22 11:14:58 -06:00
parent ed113da12e
commit 67d7021ae0

View file

@ -105,6 +105,8 @@ PerfInit(void)
/* clear the FBO */
glClear(GL_COLOR_BUFFER_BIT);
}
glEnable(GL_TEXTURE_2D);
}