commit | 50060072a7013f48a560599bd0c9f103ab747220 | [log] [tgz] |
---|---|---|
author | Samuel Pitoiset <[email protected]> | Wed Apr 10 08:39:08 2024 +0200 |
committer | Marge Bot <[email protected]> | Wed Apr 10 11:23:40 2024 +0000 |
tree | 85845fa6a426acfcecc04b5cf43487bf1c72441c | |
parent | ec55364f9b84114f72bf82c093a25d56905fe7e7 [diff] [blame] |
radv: fix missing unbind report when an image is destroyed There should be a matching unbound operation with VK_EXT_device_address_binding_report. Signed-off-by: Samuel Pitoiset <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28659>
diff --git a/src/amd/vulkan/radv_image.h b/src/amd/vulkan/radv_image.h index 9ed4c88..f23ebe6 100644 --- a/src/amd/vulkan/radv_image.h +++ b/src/amd/vulkan/radv_image.h
@@ -33,6 +33,8 @@ /* Set when bound */ struct radeon_winsys_bo *bo; VkDeviceSize offset; + uint64_t bo_va; + uint64_t bo_size; }; struct radv_image {