diff options
author | marha <marha@users.sourceforge.net> | 2012-03-26 14:34:38 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2012-03-26 14:34:38 +0200 |
commit | 1d6d472342aee7b9c68e9f1d92762ef808d35ac2 (patch) | |
tree | 49700f649b4f4fedb3346ea7c58776925be11990 /mesalib/src/mesa/main/texobj.c | |
parent | 0f834b91a4768673833ab4917e87d86c237bb1a6 (diff) | |
download | vcxsrv-1d6d472342aee7b9c68e9f1d92762ef808d35ac2.tar.gz vcxsrv-1d6d472342aee7b9c68e9f1d92762ef808d35ac2.tar.bz2 vcxsrv-1d6d472342aee7b9c68e9f1d92762ef808d35ac2.zip |
fontconfig libxcb mesa xkeyboard-config git update 26 Mar 2012
Diffstat (limited to 'mesalib/src/mesa/main/texobj.c')
-rw-r--r-- | mesalib/src/mesa/main/texobj.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mesalib/src/mesa/main/texobj.c b/mesalib/src/mesa/main/texobj.c index cfaac64bf..97bef3543 100644 --- a/mesalib/src/mesa/main/texobj.c +++ b/mesalib/src/mesa/main/texobj.c @@ -567,7 +567,8 @@ _mesa_test_texobj_completeness( const struct gl_context *ctx, GLint i; const GLint minLevel = baseLevel; const GLint maxLevel = t->_MaxLevel; - GLuint width, height, depth, face, numFaces = 1; + const GLuint numFaces = t->Target == GL_TEXTURE_CUBE_MAP ? 6 : 1; + GLuint width, height, depth, face; if (minLevel > maxLevel) { incomplete(t, BASE, "minLevel > maxLevel"); |