diff options
author | Ben Skeggs <bskeggs@redhat.com> | 2009-10-05 14:42:45 +1000 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2009-10-05 15:35:40 +1000 |
commit | 7aeaca33c331f70d507fc83583b13b8d9fc3e847 (patch) | |
tree | 96b1bbd8de463b683f9a4fddb8b5edea8846cdb4 | |
parent | 1336989ec60fff7bd590fefd28945a0e5dc536e3 (diff) |
mesa: fix return value when clipping {Read,Draw}Pixels height <= 0
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
-rw-r--r-- | src/mesa/main/image.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/image.c b/src/mesa/main/image.c index baecbab0a3..139e56a96b 100644 --- a/src/mesa/main/image.c +++ b/src/mesa/main/image.c @@ -5511,7 +5511,7 @@ _mesa_clip_drawpixels(const GLcontext *ctx, } if (*height <= 0) - return GL_TRUE; + return GL_FALSE; return GL_TRUE; } @@ -5564,7 +5564,7 @@ _mesa_clip_readpixels(const GLcontext *ctx, *height -= (*srcY + *height - buffer->Height); if (*height <= 0) - return GL_TRUE; + return GL_FALSE; return GL_TRUE; } |