VKERRORINCOMPATIBLEDRIVER
VK_ERROR_INCOMPATIBLE_DRIVER is a Vulkan API error code (a VkResult) returned by Vulkan functions when the current graphics driver is not compatible with the application's requested Vulkan API version or extensions. It indicates that the installed driver cannot support the Vulkan features the application or loader is asking for.
The error can occur during instance creation (vkCreateInstance) or device creation (vkCreateDevice) when the Vulkan loader
Common causes include an outdated or missing graphics driver, hardware without Vulkan support, incorrect or conflicting
Resolution typically involves ensuring the system has a Vulkan-capable driver that matches the application's requirements. This