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
While investigating the test_vulkan buffer_single_queue on a recent Android version two problems surfaced:
The usage of Core API functionality not available on the API version the instance is created with.
This can be fixed by either increasing the API version (to VK_API_VERSION_1_1), or by enabling and using the KHR extension function entrypoint (in our case it was vkGetBufferMemoryRequirements2KHR).
Assumptions on supported handle types for VulkanBuffer.
Misses coverage for VK_EXTERNAL_MEMORY_HANDLE_TYPE_DMA_BUF_BIT_EXT, VK_EXTERNAL_MEMORY_HANDLE_TYPE_ANDROID_HARDWARE_BUFFER_BIT_ANDROID, and others depending on availability on a platform.
As the test is not finalized I hope this can be addressed.
The text was updated successfully, but these errors were encountered:
While investigating the
test_vulkan buffer_single_queue
on a recent Android version two problems surfaced:VK_API_VERSION_1_1
), or by enabling and using the KHR extension function entrypoint (in our case it wasvkGetBufferMemoryRequirements2KHR
).VulkanBuffer
.VULKAN_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD
being supported unconditionally.As the test is not finalized I hope this can be addressed.
The text was updated successfully, but these errors were encountered: