mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-30 21:21:39 +02:00
lavapipe: allow null handleTypes
handleTypes is allowed to be null with VK_STRUCTURE_TYPE_EXPORT_MEMORY_ALLOCATE_INFO Reviewed-by: Jason Ekstrand <jason.ekstrand@collabora.com> Reviewed-by: Mike Blumenkrantz <michael.blumenkrantz@gmail.com> Closes #6501 Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16590>
This commit is contained in:
parent
35dd4ac886
commit
3684776f79
1 changed files with 3 additions and 3 deletions
|
|
@ -1645,7 +1645,7 @@ VKAPI_ATTR VkResult VKAPI_CALL lvp_AllocateMemory(
|
|||
break;
|
||||
case VK_STRUCTURE_TYPE_EXPORT_MEMORY_ALLOCATE_INFO:
|
||||
export_info = (VkExportMemoryAllocateInfo*)ext;
|
||||
assert(export_info->handleTypes == VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT);
|
||||
assert(!export_info->handleTypes || export_info->handleTypes == VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT);
|
||||
break;
|
||||
case VK_STRUCTURE_TYPE_IMPORT_MEMORY_FD_INFO_KHR:
|
||||
import_info = (VkImportMemoryFdInfoKHR*)ext;
|
||||
|
|
@ -1690,7 +1690,7 @@ VKAPI_ATTR VkResult VKAPI_CALL lvp_AllocateMemory(
|
|||
close(import_info->fd);
|
||||
goto fail;
|
||||
}
|
||||
if (export_info) {
|
||||
if (export_info && export_info->handleTypes) {
|
||||
mem->backed_fd = import_info->fd;
|
||||
}
|
||||
else {
|
||||
|
|
@ -1698,7 +1698,7 @@ VKAPI_ATTR VkResult VKAPI_CALL lvp_AllocateMemory(
|
|||
}
|
||||
mem->memory_type = LVP_DEVICE_MEMORY_TYPE_OPAQUE_FD;
|
||||
}
|
||||
else if (export_info) {
|
||||
else if (export_info && export_info->handleTypes) {
|
||||
mem->pmem = device->pscreen->allocate_memory_fd(device->pscreen, pAllocateInfo->allocationSize, &mem->backed_fd);
|
||||
if (!mem->pmem || mem->backed_fd < 0) {
|
||||
goto fail;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue