diff options
author | Marek Olšák <[email protected]> | 2019-01-30 14:31:48 -0500 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2019-01-30 14:32:05 -0500 |
commit | ffbd37d8e98dfae4ed9ba3abedd2db0b7223c394 (patch) | |
tree | 9bb55af4a7594ac7ee5208faef0e28bc10c42c21 /src/gallium/drivers/radeonsi/si_fence.c | |
parent | f4eb746ef761840b6f221cf06a8fbae9b4e7debe (diff) |
radeonsi: fix a comment typo in si_fine_fence_set
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_fence.c')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_fence.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/si_fence.c b/src/gallium/drivers/radeonsi/si_fence.c index 78da742b5da..3d23597413c 100644 --- a/src/gallium/drivers/radeonsi/si_fence.c +++ b/src/gallium/drivers/radeonsi/si_fence.c @@ -251,7 +251,7 @@ static void si_fine_fence_set(struct si_context *ctx, assert(util_bitcount(flags & (PIPE_FLUSH_TOP_OF_PIPE | PIPE_FLUSH_BOTTOM_OF_PIPE)) == 1); - /* Use uncached system memory for the fence. */ + /* Use cached system memory for the fence. */ u_upload_alloc(ctx->cached_gtt_allocator, 0, 4, 4, &fine->offset, (struct pipe_resource **)&fine->buf, (void **)&fence_ptr); if (!fine->buf) |