mesa: fix return value when clipping {Read,Draw}Pixels height <= 0

Signed-off-by: Ben Skeggs <bskeggs@redhat.com>

(cherry picked from master, commit 7aeaca33c3)
This commit is contained in:
Brian Paul 2009-10-05 11:10:31 -06:00
parent a15d9ca9cc
commit a8768bbc9d

View file

@ -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;
}