diff options
author | Nicolai Hähnle <[email protected]> | 2016-04-22 22:56:13 -0500 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2016-04-27 11:16:41 -0500 |
commit | 13acf2b24375af40b62571d5f07c75342c1acb14 (patch) | |
tree | 8cc5f87f6ddb33dffd5e2bddfbb9e28aa8f77bf5 /src/gallium/drivers/radeonsi | |
parent | c868974396e95d900c7754bce38c0c950f6e3ab6 (diff) |
gallium/radeon: remove use_reusable_pool parameter from r600_init_resource
All callers set it to true.
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_descriptors.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/si_descriptors.c b/src/gallium/drivers/radeonsi/si_descriptors.c index 6926c6b701d..fbaf804be90 100644 --- a/src/gallium/drivers/radeonsi/si_descriptors.c +++ b/src/gallium/drivers/radeonsi/si_descriptors.c @@ -1203,7 +1203,7 @@ static void si_invalidate_buffer(struct pipe_context *ctx, struct pipe_resource /* Reallocate the buffer in the same pipe_resource. */ r600_init_resource(&sctx->screen->b, rbuffer, rbuffer->b.b.width0, - alignment, TRUE); + alignment); /* We changed the buffer, now we need to bind it where the old one * was bound. This consists of 2 things: |