When installing Vulkan SDK 1.3.216 or after on MacOS, the following appears:
NOTICE: As of the 1.3.216 SDK release, the Vulkan Portability Enumeration extension is being enforced by the Vulkan loader. Failure to 'opt in' for non-conformant Vulkan implementations will cause applications to fail to find the MoltenVK ICD. See the macOS release notes for more information.
Indeed the code will not run anymore.
Fixing it requires a few changes: adding more layers to the default:
Unfortunately, some of these constants are not available with the glfw provided Vulkan headers. Updating the version of glfw is also necessary.
I will create a PR for this issue.
When installing Vulkan SDK 1.3.216 or after on MacOS, the following appears:
Indeed the code will not run anymore. Fixing it requires a few changes: adding more layers to the default:
and a flag when calling
InstanceCreateInfo
:Unfortunately, some of these constants are not available with the glfw provided Vulkan headers. Updating the version of glfw is also necessary. I will create a PR for this issue.