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 {