Add testing for sync_fd (#1747)

Modify the external semaphore extension test
to use SYNC_FD, if available on the device.

Deleted tests that are not compatible with blocking
semaphores.
This commit is contained in:
Sreelakshmi Haridas Maruthur
2023-08-01 12:03:00 -06:00
committed by GitHub
parent e29d0fd3a1
commit aa23f345c3
6 changed files with 87 additions and 435 deletions

View File

@@ -72,6 +72,8 @@ VulkanInstance::VulkanInstance(): m_vkInstance(VK_NULL_HANDLE)
#if defined(_WIN32) || defined(_WIN64)
const char *vulkanLoaderLibraryName = "vulkan-1.dll";
#elif defined(__ANDROID__)
const char *vulkanLoaderLibraryName = "libvulkan.so";
#elif defined(__linux__)
const char *vulkanLoaderLibraryName = "libvulkan.so.1";
#endif