Make sure you have the latest Vulkan runtime installed. You can download it from the LunarG website or through the package manager on Linux distributions.
If after all steps the error remains, the hardware itself may not support Vulkan 1.1. Check your GPU’s Vulkan capabilities using tools like GPU Caps Viewer or VulkanCapsViewer. Minimum requirement for vkGetPhysicalDeviceFeatures2 is Vulkan 1.1 capable hardware:
On unsupported hardware, the application must fall back to Vulkan 1.0 or use a different rendering backend (e.g., OpenGL, DirectX 12).
For NVIDIA Users:
For AMD Users:
For Intel Integrated GPU Users:
Why this works: Modern GPU drivers (released after 2018) include Vulkan 1.3+ support. The function
vkGetPhysicalDeviceFeatures2is present in all Vulkan 1.1+ drivers.
Make sure you have the latest Vulkan runtime installed. You can download it from the LunarG website or through the package manager on Linux distributions.
If after all steps the error remains, the hardware itself may not support Vulkan 1.1. Check your GPU’s Vulkan capabilities using tools like GPU Caps Viewer or VulkanCapsViewer. Minimum requirement for vkGetPhysicalDeviceFeatures2 is Vulkan 1.1 capable hardware:
On unsupported hardware, the application must fall back to Vulkan 1.0 or use a different rendering backend (e.g., OpenGL, DirectX 12).
For NVIDIA Users:
For AMD Users:
For Intel Integrated GPU Users:
Why this works: Modern GPU drivers (released after 2018) include Vulkan 1.3+ support. The function
vkGetPhysicalDeviceFeatures2is present in all Vulkan 1.1+ drivers.
Cedido por: Paulo de Deus
Cedido por: Paulo de Deus