diff options
author | Chad Versace <[email protected]> | 2011-11-10 11:04:17 -0800 |
---|---|---|
committer | Chad Versace <[email protected]> | 2011-11-15 06:42:00 -0800 |
commit | 87d6b359745b6b2c94d1c852ce27e2879d4bec56 (patch) | |
tree | d9fb14811766806812f8942427fdb9c10475a767 /src/mesa | |
parent | f911cac7a7a8ebcad711587200c7f66ab61d1ccf (diff) |
intel: Fix intel_unmap_renderbuffer_s8()
When gathering the temporary buffer's pixles into the gem buffer, we had
the two buffers juxtaposed. Oops.
Fixes the following Piglit tests on gen7:
general/GL_SELECT - alpha-test enabled
general/GL_SELECT - depth-test enabled
general/GL_SELECT - no test function
general/GL_SELECT - scissor-test enabled
general/GL_SELECT - stencil-test enabled
Fixes SIGABRT in Piglit tests EXT_framebuffer_object/fbo-stencil-* on
gen7.
Reviewed-by: Eric Anholt <[email protected]>
Signed-off-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/intel/intel_fbo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/intel/intel_fbo.c b/src/mesa/drivers/dri/intel/intel_fbo.c index f24f976f347..8bda7ff7e0e 100644 --- a/src/mesa/drivers/dri/intel/intel_fbo.c +++ b/src/mesa/drivers/dri/intel/intel_fbo.c @@ -349,8 +349,8 @@ intel_unmap_renderbuffer_s8(struct gl_context *ctx, /* The temporary buffer was written to, so we must copy its pixels into * the real buffer. */ - uint8_t *tiled_s8_map = irb->map_buffer; - uint8_t *untiled_s8_map = irb->region->bo->virtual; + uint8_t *untiled_s8_map = irb->map_buffer; + uint8_t *tiled_s8_map = irb->region->bo->virtual; /* Flip the Y axis for the default framebuffer. */ int y_flip = (rb->Name == 0) ? -1 : 1; |