From: Christian König Date: Sun, 21 Nov 2010 12:58:23 +0000 (+0100) Subject: r600g: disable staging upload for now X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=331eb58d1532303770e3cae2ba5ed4c39a159881;p=mesa.git r600g: disable staging upload for now --- 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);