mesa: fix return value when clipping {Read,Draw}Pixels height <= 0
authorBen Skeggs <bskeggs@redhat.com>
Mon, 5 Oct 2009 04:42:45 +0000 (14:42 +1000)
committerBen Skeggs <bskeggs@redhat.com>
Mon, 5 Oct 2009 05:35:40 +0000 (15:35 +1000)
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
src/mesa/main/image.c

index baecbab..139e56a 100644 (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;
 }