summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristian König <[email protected]>2010-11-21 13:58:23 +0100
committerChristian König <[email protected]>2010-11-21 13:58:23 +0100
commit331eb58d1532303770e3cae2ba5ed4c39a159881 (patch)
tree6ce38c744a6b03b8231117fd1b58def5f4238a77 /src
parentcc998ddf929d5b6caea9f3d4b31c92aed7c55d96 (diff)
r600g: disable staging upload for now
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/r600/r600_texture.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/r600/r600_texture.c b/src/gallium/drivers/r600/r600_texture.c
index e719f7fb983..a5ac75736f0 100644
--- a/src/gallium/drivers/r600/r600_texture.c
+++ b/src/gallium/drivers/r600/r600_texture.c
@@ -546,8 +546,8 @@ struct pipe_transfer* r600_texture_get_transfer(struct pipe_context *ctx,
PIPE_TRANSFER_UNSYNCHRONIZED)))
use_staging_texture = TRUE;
- if (!permit_hardware_blit(ctx->screen, texture) ||
- (texture->flags & R600_RESOURCE_FLAG_TRANSFER))
+ /*if (!permit_hardware_blit(ctx->screen, texture) ||
+ (texture->flags & R600_RESOURCE_FLAG_TRANSFER))*/
use_staging_texture = FALSE;
trans = CALLOC_STRUCT(r600_transfer);