-
Notifications
You must be signed in to change notification settings - Fork 438
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't create instance if ext_validation_features is set to true #1871
Comments
Can you share the output of |
|
|
VK_EXT_validation_features is listed as a layer device extension however. How does that then get enabled or accessed, in particular using vulkano? I thought it was supposed to be enabled at instance creation time? |
Hmm, it looks like layer extensions were overlooked when implementing instance extensions in Vulkano. There is no way to query or enable them currently, I'm afraid. I'll keep this issue open pending a future fix. |
When running the code below, the following error is thrown:
Setting
ext_validation_features
to false fixes the problem.enabled_layers
andmax_api_version
are not required to reproduce the problem, however I left them in there as that is how I'm trying to initialize the instance.I've tried initializing the instance in this same way in Haskell. The instance was successfully created with the VK_EXT_validation_features extension enabled so I'm pretty sure this is an issue with Vulkano.
main.rs
file that demonstrates the issue:The text was updated successfully, but these errors were encountered: