radeon: fix glCopyTex(Sub)Image if user FBO is bound
authorMaciej Cencora <m.cencora@gmail.com>
Wed, 10 Mar 2010 19:53:21 +0000 (20:53 +0100)
committerMaciej Cencora <m.cencora@gmail.com>
Wed, 10 Mar 2010 21:33:29 +0000 (22:33 +0100)
Fixes piglit/fbo-blit and wine d3d9 unit test.

src/mesa/drivers/dri/radeon/radeon_tex_copy.c

index 5cfad6fc3c8e9498dbd4b17b8d62a3e685b5035f..e57d77e7ef2765d9b5873f40d017b38a53ea6c62 100644 (file)
@@ -52,15 +52,18 @@ do_copy_texsubimage(GLcontext *ctx,
     gl_format dst_mesaformat;
     unsigned src_width;
     unsigned dst_width;
+    unsigned flip_y;
 
     if (!radeon->vtbl.blit) {
         return GL_FALSE;
     }
 
     if (_mesa_get_format_bits(timg->base.TexFormat, GL_DEPTH_BITS) > 0) {
-        rrb = radeon_get_depthbuffer(radeon);
+        rrb = radeon_renderbuffer(ctx->ReadBuffer->_DepthBuffer);
+        flip_y = ctx->ReadBuffer->Attachment[BUFFER_DEPTH].Type == GL_NONE;
     } else {
-        rrb = radeon_get_colorbuffer(radeon);
+        rrb = radeon_renderbuffer(ctx->ReadBuffer->_ColorReadBuffer);
+        flip_y = ctx->ReadBuffer->Attachment[BUFFER_COLOR0].Type == GL_NONE;
     }
 
     if (!timg->mt) {
@@ -124,7 +127,7 @@ do_copy_texsubimage(GLcontext *ctx,
                              timg->mt->bo, dst_offset, dst_mesaformat,
                              timg->mt->levels[level].rowstride / dst_bpp,
                              dst_width, timg->base.Height,
-                             dstx, dsty, width, height, 1);
+                             dstx, dsty, width, height, flip_y);
 }
 
 void