You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is VK_EXT_host_image_copy incompatible with VK_KHR_external_memory_win32?
When I create VkImage with VkImageCreateInfo::usage = VK_IMAGE_USAGE_HOST_TRANSFER_BIT_EXT it succeeds, however if I call vkGetImageMemoryRequirements2KHR on such image it says memoryTypeBits is equal to 0. Any other type is allocated successfully, but if I have external memory as pNext to the VkImageCreateInfo
If I was to remove the usage VK_IMAGE_USAGE_HOST_TRANSFER_BIT_EXT the memory is found. If I remove external_info from pNext, the memory allocation succeeds, although with validation error.
Is this a driver bug, or VK_KHR_external_memory_win32 has limits on what memory it can export?
I'm using NVidia A4000 with 560. driver on Windows 11
The text was updated successfully, but these errors were encountered:
Is VK_EXT_host_image_copy incompatible with VK_KHR_external_memory_win32?
When I create VkImage with
VkImageCreateInfo::usage = VK_IMAGE_USAGE_HOST_TRANSFER_BIT_EXT
it succeeds, however if I callvkGetImageMemoryRequirements2KHR
on such image it saysmemoryTypeBits
is equal to 0. Any other type is allocated successfully, but if I have external memory as pNext to the VkImageCreateInfoit fails to find memory bits.
If I was to remove the usage
VK_IMAGE_USAGE_HOST_TRANSFER_BIT_EXT
the memory is found. If I removeexternal_info
from pNext, the memory allocation succeeds, although with validation error.Is this a driver bug, or
VK_KHR_external_memory_win32
has limits on what memory it can export?I'm using NVidia A4000 with 560. driver on Windows 11
The text was updated successfully, but these errors were encountered: