r600g,radeonsi: if discarding whole buffer range, discard whole resource instead
authorMarek Olšák <marek.olsak@amd.com>
Mon, 13 Jan 2014 12:10:06 +0000 (13:10 +0100)
committerMarek Olšák <marek.olsak@amd.com>
Thu, 23 Jan 2014 00:47:14 +0000 (01:47 +0100)
Also set the unsynchronized flag if the whole resource was discarded
to avoid doing buffer-busy checks again.

Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
src/gallium/drivers/radeon/r600_buffer_common.c

index ac5fbcc0dd01345e9ddbab46983fb462f7ff0846..66e9d578b65ebfa338fa2892b03d033392d23411 100644 (file)
@@ -205,6 +205,12 @@ static void *r600_buffer_transfer_map(struct pipe_context *ctx,
                usage |= PIPE_TRANSFER_UNSYNCHRONIZED;
        }
 
+       /* If discarding the entire range, discard the whole resource instead. */
+       if (usage & PIPE_TRANSFER_DISCARD_RANGE &&
+           box->x == 0 && box->width == resource->width0) {
+               usage |= PIPE_TRANSFER_DISCARD_WHOLE_RESOURCE;
+       }
+
        if (usage & PIPE_TRANSFER_DISCARD_WHOLE_RESOURCE &&
            !(usage & PIPE_TRANSFER_UNSYNCHRONIZED)) {
                assert(usage & PIPE_TRANSFER_WRITE);
@@ -214,6 +220,8 @@ static void *r600_buffer_transfer_map(struct pipe_context *ctx,
                    rctx->ws->buffer_is_busy(rbuffer->buf, RADEON_USAGE_READWRITE)) {
                        rctx->invalidate_buffer(&rctx->b, &rbuffer->b.b);
                }
+               /* At this point, the buffer is always idle. */
+               usage |= PIPE_TRANSFER_UNSYNCHRONIZED;
        }
        else if ((usage & PIPE_TRANSFER_DISCARD_RANGE) &&
                 !(usage & PIPE_TRANSFER_UNSYNCHRONIZED) &&