From: Yuanhan Liu Date: Sun, 16 Oct 2011 01:35:33 +0000 (+0800) Subject: mesa: fix inverted pbo test error at _mesa_GetnCompressedTexImageARB X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=403cf7c56fc6decb7636114dc1dadb7adf99a7a4;p=mesa.git mesa: fix inverted pbo test error at _mesa_GetnCompressedTexImageARB It seems like a typo. Signed-off-by: Yuanhan Liu Reviewed-by: Brian Paul --- diff --git a/src/mesa/main/texgetimage.c b/src/mesa/main/texgetimage.c index f9118860bab..06e032396e4 100644 --- a/src/mesa/main/texgetimage.c +++ b/src/mesa/main/texgetimage.c @@ -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; }