diff options
author | Nicolai Hähnle <[email protected]> | 2016-04-22 22:58:38 -0500 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2016-04-27 11:16:41 -0500 |
commit | 562c4a17b7e4fb56c7db679233b4a48f8b80b0f2 (patch) | |
tree | a8a7d2656ea3cb4e708d81a436d89af986e9925e /src/gallium/drivers/r300 | |
parent | 13acf2b24375af40b62571d5f07c75342c1acb14 (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')
-rw-r--r-- | src/gallium/drivers/r300/r300_query.c | 2 | ||||
-rw-r--r-- | src/gallium/drivers/r300/r300_render.c | 2 | ||||
-rw-r--r-- | src/gallium/drivers/r300/r300_screen_buffer.c | 4 | ||||
-rw-r--r-- | src/gallium/drivers/r300/r300_texture.c | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/src/gallium/drivers/r300/r300_query.c b/src/gallium/drivers/r300/r300_query.c index 8557eb72141..f788f583d65 100644 --- a/src/gallium/drivers/r300/r300_query.c +++ b/src/gallium/drivers/r300/r300_query.c @@ -58,7 +58,7 @@ static struct pipe_query *r300_create_query(struct pipe_context *pipe, else q->num_pipes = r300screen->info.r300_num_gb_pipes; - q->buf = r300->rws->buffer_create(r300->rws, 4096, 4096, TRUE, + q->buf = r300->rws->buffer_create(r300->rws, 4096, 4096, RADEON_DOMAIN_GTT, 0); if (!q->buf) { FREE(q); diff --git a/src/gallium/drivers/r300/r300_render.c b/src/gallium/drivers/r300/r300_render.c index 7eda6753d0d..43860f3035c 100644 --- a/src/gallium/drivers/r300/r300_render.c +++ b/src/gallium/drivers/r300/r300_render.c @@ -904,7 +904,7 @@ static boolean r300_render_allocate_vertices(struct vbuf_render* render, r300->vbo = rws->buffer_create(rws, MAX2(R300_MAX_DRAW_VBO_SIZE, size), - R300_BUFFER_ALIGNMENT, TRUE, + R300_BUFFER_ALIGNMENT, RADEON_DOMAIN_GTT, 0); if (!r300->vbo) { return FALSE; diff --git a/src/gallium/drivers/r300/r300_screen_buffer.c b/src/gallium/drivers/r300/r300_screen_buffer.c index 42c8e3a0fc5..5b69b24f59b 100644 --- a/src/gallium/drivers/r300/r300_screen_buffer.c +++ b/src/gallium/drivers/r300/r300_screen_buffer.c @@ -102,7 +102,7 @@ r300_buffer_transfer_map( struct pipe_context *context, /* Create a new one in the same pipe_resource. */ new_buf = r300->rws->buffer_create(r300->rws, rbuf->b.b.width0, - R300_BUFFER_ALIGNMENT, TRUE, + R300_BUFFER_ALIGNMENT, rbuf->domain, 0); if (new_buf) { /* Discard the old buffer. */ @@ -183,7 +183,7 @@ struct pipe_resource *r300_buffer_create(struct pipe_screen *screen, rbuf->buf = r300screen->rws->buffer_create(r300screen->rws, rbuf->b.b.width0, - R300_BUFFER_ALIGNMENT, TRUE, + R300_BUFFER_ALIGNMENT, rbuf->domain, 0); if (!rbuf->buf) { FREE(rbuf); 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) { |