Browse Source

mesa: fix inverted pbo test error at _mesa_GetnCompressedTexImageARB

It seems like a typo.

Signed-off-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
tags/mesa-8.0-rc1
Yuanhan Liu 14 years ago
parent
commit
403cf7c56f
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/mesa/main/texgetimage.c

+ 1
- 1
src/mesa/main/texgetimage.c View File

@@ -884,7 +884,7 @@ _mesa_GetnCompressedTexImageARB(GLenum target, GLint level, GLsizei bufSize,
return;
}

if (_mesa_is_bufferobj(ctx->Pack.BufferObj) && !img) {
if (!_mesa_is_bufferobj(ctx->Pack.BufferObj) && !img) {
/* not an error, do nothing */
return;
}

Loading…
Cancel
Save