diff options
author | Brian Paul <[email protected]> | 2009-10-05 11:10:31 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-10-05 11:10:31 -0600 |
commit | a8768bbc9de1441384cecc147d51c9ee6431b924 (patch) | |
tree | 02caa9c030032ae3541ee622a8e470ee5ba25df8 /src | |
parent | a15d9ca9ccfeebfcea148fc61ead3a70541e2a76 (diff) |
mesa: fix return value when clipping {Read,Draw}Pixels height <= 0
Signed-off-by: Ben Skeggs <[email protected]>
(cherry picked from master, commit 7aeaca33c331f70d507fc83583b13b8d9fc3e847)
Diffstat (limited to 'src')
-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 baecbab0a35..139e56a96be 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; } |