summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/r300/r300_texture.c
diff options
context:
space:
mode:
authorNicolai Hähnle <[email protected]>2016-04-22 22:58:38 -0500
committerNicolai Hähnle <[email protected]>2016-04-27 11:16:41 -0500
commit562c4a17b7e4fb56c7db679233b4a48f8b80b0f2 (patch)
treea8a7d2656ea3cb4e708d81a436d89af986e9925e /src/gallium/drivers/r300/r300_texture.c
parent13acf2b24375af40b62571d5f07c75342c1acb14 (diff)
winsys/radeon: remove use_reusable_pool parameter from buffer_create
All callers set this parameter to true. Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r300/r300_texture.c')
-rw-r--r--src/gallium/drivers/r300/r300_texture.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_texture.c b/src/gallium/drivers/r300/r300_texture.c
index da51661d5cd..df016734d35 100644
--- a/src/gallium/drivers/r300/r300_texture.c
+++ b/src/gallium/drivers/r300/r300_texture.c
@@ -1047,7 +1047,7 @@ r300_texture_create_object(struct r300_screen *rscreen,
/* Create the backing buffer if needed. */
if (!tex->buf) {
- tex->buf = rws->buffer_create(rws, tex->tex.size_in_bytes, 2048, TRUE,
+ tex->buf = rws->buffer_create(rws, tex->tex.size_in_bytes, 2048,
tex->domain, 0);
if (!tex->buf) {