r300: allow src and dst BOs to be placed in GTT during blit
Fixes some relocation failures
This commit is contained in:
committed by
Alex Deucher
parent
62b3321d7d
commit
4572ae1925
@@ -385,18 +385,12 @@ static GLboolean validate_buffers(struct r300_context *r300,
|
||||
radeon_cs_space_reset_bos(r300->radeon.cmdbuf.cs);
|
||||
|
||||
ret = radeon_cs_space_check_with_bo(r300->radeon.cmdbuf.cs,
|
||||
src_bo, RADEON_GEM_DOMAIN_VRAM, 0);
|
||||
src_bo, RADEON_GEM_DOMAIN_VRAM | RADEON_GEM_DOMAIN_GTT, 0);
|
||||
if (ret)
|
||||
return GL_FALSE;
|
||||
|
||||
ret = radeon_cs_space_check_with_bo(r300->radeon.cmdbuf.cs,
|
||||
dst_bo, 0, RADEON_GEM_DOMAIN_VRAM);
|
||||
if (ret)
|
||||
return GL_FALSE;
|
||||
|
||||
ret = radeon_cs_space_check_with_bo(r300->radeon.cmdbuf.cs,
|
||||
first_elem(&r300->radeon.dma.reserved)->bo,
|
||||
RADEON_GEM_DOMAIN_GTT, 0);
|
||||
dst_bo, 0, RADEON_GEM_DOMAIN_VRAM | RADEON_GEM_DOMAIN_GTT);
|
||||
if (ret)
|
||||
return GL_FALSE;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user