Module: Mesa Branch: master Commit: 3f74c6a8815dcc5ff7f56993cc88f9e21aa81d14 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=3f74c6a8815dcc5ff7f56993cc88f9e21aa81d14
Author: Jason Ekstrand <[email protected]> Date: Wed May 13 16:26:22 2020 -0500 anv: Call vk_object_base_finish for image views Fixes: 682c81bdfb7 "vulkan,anv: Add a base object struct type" Reviewed-by: Kenneth Graunke <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5032> --- src/intel/vulkan/anv_image.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/intel/vulkan/anv_image.c b/src/intel/vulkan/anv_image.c index eb9356df9b4..b6ab727cb37 100644 --- a/src/intel/vulkan/anv_image.c +++ b/src/intel/vulkan/anv_image.c @@ -2170,6 +2170,7 @@ anv_DestroyImageView(VkDevice _device, VkImageView _iview, } } + vk_object_base_finish(&iview->base); vk_free2(&device->vk.alloc, pAllocator, iview); } _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
