projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1336989
)
mesa: fix return value when clipping {Read,Draw}Pixels height <= 0
author
Ben Skeggs
<bskeggs@redhat.com>
Mon, 5 Oct 2009 04:42:45 +0000
(14:42 +1000)
committer
Ben 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
patch
|
blob
|
history
diff --git
a/src/mesa/main/image.c
b/src/mesa/main/image.c
index baecbab0a35bb4f373d7a7ab469beacab286de9b..139e56a96be037a21fd249ec35d1c1b7c7c46d80 100644
(file)
--- 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_
TRU
E;
+ return GL_
FALS
E;
return GL_TRUE;
}
@@
-5564,7
+5564,7
@@
_mesa_clip_readpixels(const GLcontext *ctx,
*height -= (*srcY + *height - buffer->Height);
if (*height <= 0)
- return GL_
TRU
E;
+ return GL_
FALS
E;
return GL_TRUE;
}