diff options
author | Brian Paul <[email protected]> | 2005-02-08 02:04:49 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-02-08 02:04:49 +0000 |
commit | 0d22b9054094c863062c7787b45e1fb4d3834a67 (patch) | |
tree | 93457253ffbd83574049e2412ea787ddce712a40 /src/mesa/main/teximage.c | |
parent | 27f75a863e0d7e2bcfbfab1ebddb1d83e4ca4199 (diff) |
indentation fix
Diffstat (limited to 'src/mesa/main/teximage.c')
-rw-r--r-- | src/mesa/main/teximage.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index f0b3ac1f13d..ac9d92c1493 100644 --- a/src/mesa/main/teximage.c +++ b/src/mesa/main/teximage.c @@ -533,12 +533,13 @@ _mesa_set_tex_image(struct gl_texture_object *tObj, case GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB: case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB: case GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB: - case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB: { - GLuint face = ((GLuint) target - - (GLuint) GL_TEXTURE_CUBE_MAP_POSITIVE_X); - tObj->Image[face][level] = texImage; - break; - } + case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB: + { + GLuint face = ((GLuint) target - + (GLuint) GL_TEXTURE_CUBE_MAP_POSITIVE_X); + tObj->Image[face][level] = texImage; + } + break; case GL_TEXTURE_RECTANGLE_NV: ASSERT(level == 0); tObj->Image[0][level] = texImage; |