diff options
author | Keith Whitwell <[email protected]> | 2006-11-14 14:22:43 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2006-11-14 14:22:43 +0000 |
commit | 6cc5a82206503190c2387266b4ad1b075d9dec62 (patch) | |
tree | 2c11e55aeb17e33425c4383167dfc1abec2c6af0 /src/mesa/swrast/s_readpix.c | |
parent | efa91b9a8f39dd49a59e4fc5524657f7cd5ae8ac (diff) |
Make sure RENDER_FINISH is called on the zero pixel case. Reported by
Haihao Xiang.
Diffstat (limited to 'src/mesa/swrast/s_readpix.c')
-rw-r--r-- | src/mesa/swrast/s_readpix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_readpix.c b/src/mesa/swrast/s_readpix.c index cbfb7712d82..128ce0afb33 100644 --- a/src/mesa/swrast/s_readpix.c +++ b/src/mesa/swrast/s_readpix.c @@ -554,7 +554,7 @@ _swrast_ReadPixels( GLcontext *ctx, /* Do all needed clipping here, so that we can forget about it later */ if (!_mesa_clip_readpixels(ctx, &x, &y, &width, &height, &clippedPacking)) { /* The ReadPixels region is totally outside the window bounds */ - return; + goto end; } if (clippedPacking.BufferObj->Name) { |