diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2006-07-18 22:33:14 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2006-07-18 22:33:14 +0000 |
commit | 114ecb9d67b1254d0929bfeec80dee8015834425 (patch) | |
tree | 1c9352c8dd4abe430c18f1b05cdb3f1bee8288d5 | |
parent | df926955be59a0128eea44141eb46fc52556dc05 (diff) |
indentation fix
-rw-r--r-- | src/mesa/main/teximage.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index 523620bd40..f8528dd96e 100644 --- a/src/mesa/main/teximage.c +++ b/src/mesa/main/teximage.c @@ -1996,11 +1996,11 @@ copytexsubimage_error_check( GLcontext *ctx, GLuint dimensions, } if (teximage->IsCompressed) { - if (!_mesa_source_buffer_exists(ctx, teximage->_BaseFormat)) { - _mesa_error(ctx, GL_INVALID_OPERATION, - "glCopyTexSubImage%dD(missing readbuffer)", dimensions); - return GL_TRUE; - } + if (!_mesa_source_buffer_exists(ctx, teximage->_BaseFormat)) { + _mesa_error(ctx, GL_INVALID_OPERATION, + "glCopyTexSubImage%dD(missing readbuffer)", dimensions); + return GL_TRUE; + } if (target != GL_TEXTURE_2D) { _mesa_error(ctx, GL_INVALID_ENUM, |