summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/radeonsi/si_uvd.c
diff options
context:
space:
mode:
authorNicolai Hähnle <nicolai.haehnle@amd.com>2016-04-22 22:50:19 -0500
committerNicolai Hähnle <nicolai.haehnle@amd.com>2016-04-27 11:16:41 -0500
commitc868974396e95d900c7754bce38c0c950f6e3ab6 (patch)
tree631a165763611306888a3c0e580fb856376fd0a6 /src/gallium/drivers/radeonsi/si_uvd.c
parent8c43c06e0463515c1339d44cbb8f78169e6a06fb (diff)
downloadexternal_mesa3d-c868974396e95d900c7754bce38c0c950f6e3ab6.zip
external_mesa3d-c868974396e95d900c7754bce38c0c950f6e3ab6.tar.gz
external_mesa3d-c868974396e95d900c7754bce38c0c950f6e3ab6.tar.bz2
radeon/video: always use the reusable buffer pool
A semantic error was introduced in a past refactoring that caused the bind parameter to be passed into the use_reusable_pool parameter of buffer_create. Since this clearly makes no sense, and there is no clear reason why the cache _shouldn't_ be used, just use the cache always. Cc: Christian König <christian.koenig@amd.com> Reviewed-by: Christian König <christian.koenig@amd.com> Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_uvd.c')
-rw-r--r--src/gallium/drivers/radeonsi/si_uvd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/si_uvd.c b/src/gallium/drivers/radeonsi/si_uvd.c
index 95bfecd..8c3e5fd 100644
--- a/src/gallium/drivers/radeonsi/si_uvd.c
+++ b/src/gallium/drivers/radeonsi/si_uvd.c
@@ -97,7 +97,7 @@ struct pipe_video_buffer *si_video_buffer_create(struct pipe_context *pipe,
pbs[i] = &resources[i]->resource.buf;
}
- rvid_join_surfaces(ctx->b.ws, templ.bind, pbs, surfaces);
+ rvid_join_surfaces(ctx->b.ws, pbs, surfaces);
for (i = 0; i < VL_NUM_COMPONENTS; ++i) {
if (!resources[i])