From 38f5eef59de0be41c4c5bd77fb221c75981e1e5c Mon Sep 17 00:00:00 2001 From: Jason Ekstrand Date: Tue, 9 Jun 2015 11:41:31 -0700 Subject: [PATCH] vk/device: Free border color states when we have valgrind --- src/vulkan/device.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/vulkan/device.c b/src/vulkan/device.c index 843c1ed61f0..37449d7ae4f 100644 --- a/src/vulkan/device.c +++ b/src/vulkan/device.c @@ -412,6 +412,16 @@ VkResult anv_DestroyDevice( anv_device_finish_meta(device); +#ifdef HAVE_VALGRIND + /* We only need to free these to prevent valgrind errors. The backing + * BO will go away in a couple of lines so we don't actually leak. + */ + anv_state_pool_free(&device->dynamic_state_pool, + device->float_border_colors); + anv_state_pool_free(&device->dynamic_state_pool, + device->uint32_border_colors); +#endif + anv_bo_pool_finish(&device->batch_bo_pool); anv_block_pool_finish(&device->dynamic_state_block_pool); anv_block_pool_finish(&device->instruction_block_pool); -- 2.30.2