2 Dec
2024
2 Dec
'24
2:33 p.m.
Jacek Caban (@jacek) commented about include/wine/vulkan_driver.h:
}; \ }
+static inline void vulkan_object_init( struct vulkan_object *obj, UINT64 host_handle, struct vulkan_client_object *client ) +{ + obj->host_handle = (UINT_PTR)host_handle;
This cast truncates handle value in 32-bit builds. It's also redundant in the first place. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/6931#note_89422