diff options
author | Nicolai Hähnle <[email protected]> | 2016-09-07 10:57:56 +0200 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2016-09-27 16:45:02 +0200 |
commit | e703f71ebdf91938c83f47c898f1da058ce0ac32 (patch) | |
tree | 560e9ddc0e7c46b60dd31fde2c1672d4d7df0415 /src/gallium/drivers/radeon/radeon_uvd.c | |
parent | 84f156c0cbf0deb0f51163dc3fd6b09a62270c50 (diff) |
gallium/radeon: add RADEON_USAGE_SYNCHRONIZED
This is really the behavior we want most of the time, but having a
SYNCHRONIZED flag instead of an UNSYNCHRONIZED one has the advantage that
OR'ing different flags together always results in stronger guarantees.
The parent BOs of sub-allocated buffers will be added unsynchronized.
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeon/radeon_uvd.c')
-rw-r--r-- | src/gallium/drivers/radeon/radeon_uvd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeon/radeon_uvd.c b/src/gallium/drivers/radeon/radeon_uvd.c index d5d654ac4a3..3ae0eaa6e44 100644 --- a/src/gallium/drivers/radeon/radeon_uvd.c +++ b/src/gallium/drivers/radeon/radeon_uvd.c @@ -113,7 +113,8 @@ static void send_cmd(struct ruvd_decoder *dec, unsigned cmd, { int reloc_idx; - reloc_idx = dec->ws->cs_add_buffer(dec->cs, buf, usage, domain, + reloc_idx = dec->ws->cs_add_buffer(dec->cs, buf, usage | RADEON_USAGE_SYNCHRONIZED, + domain, RADEON_PRIO_UVD); if (!dec->use_legacy) { uint64_t addr; |