mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 07:28:11 +02:00
zink. Don't set incorrect sType in VkImportMemoryFdInfoKHR struct
imfi.sType was being set to an invalid value, triggering a warning in Clang. The only valid value for imfi.sType is VK_STRUCTURE_TYPE_IMPORT_MEMORY_FD_INFO_KHR which is the value it is being given at initialisation time, a few lines earlier. The incorrect value, VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT, is supposed to be used in imfi.handleType instead - and indeed, handleType *is* being set to this value a few lines later. Reviewed-by: Erik Faye-Lund <erik.faye-lund@collabora.com> Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4034> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4034>
This commit is contained in:
parent
3199b8b9e7
commit
6ceda48560
1 changed files with 0 additions and 1 deletions
|
|
@ -247,7 +247,6 @@ resource_create(struct pipe_screen *pscreen,
|
|||
};
|
||||
|
||||
if (whandle && whandle->type == WINSYS_HANDLE_TYPE_FD) {
|
||||
imfi.sType = VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT;
|
||||
imfi.pNext = NULL;
|
||||
imfi.handleType = VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT;
|
||||
imfi.fd = whandle->handle;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue