progs/perf: set TexSubImage4=FALSE

This commit is contained in:
Brian Paul 2009-09-23 08:06:29 -06:00
parent 31f1571d1f
commit aae77319c0
1 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ static GLsizei TexSize;
static GLenum TexIntFormat, TexSrcFormat, TexSrcType;
static const GLboolean DrawPoint = GL_TRUE;
static const GLboolean TexSubImage4 = GL_TRUE;
static const GLboolean TexSubImage4 = GL_FALSE;
enum {
MODE_CREATE_TEXIMAGE,
@ -145,7 +145,7 @@ UploadTexSubImage2D(unsigned count)
{
unsigned i;
for (i = 0; i < count; i++) {
if (0 && TexSubImage4) {
if (TexSubImage4) {
GLsizei halfSize = (TexSize == 1) ? 1 : TexSize / 2;
GLsizei halfPos = TexSize - halfSize;
/* do glTexSubImage2D in four pieces */