mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-21 00:00:22 +01:00
radeon: fix glCopyTex(Sub)Image if user FBO is bound
Fixes piglit/fbo-blit and wine d3d9 unit test.
This commit is contained in:
parent
a44f362567
commit
a68e8a4eaa
1 changed files with 6 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue