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/radeon/r600_texture.c | |
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/radeon/r600_texture.c')
-rw-r--r-- | src/gallium/drivers/radeon/r600_texture.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeon/r600_texture.c b/src/gallium/drivers/radeon/r600_texture.c index 2d4ae332b82..7e58490e663 100644 --- a/src/gallium/drivers/radeon/r600_texture.c +++ b/src/gallium/drivers/radeon/r600_texture.c @@ -878,7 +878,7 @@ r600_texture_create_object(struct pipe_screen *screen, /* Now create the backing buffer. */ if (!buf) { if (!r600_init_resource(rscreen, resource, rtex->size, - rtex->surface.bo_alignment, TRUE)) { + rtex->surface.bo_alignment)) { FREE(rtex); return NULL; } |