-
Notifications
You must be signed in to change notification settings - Fork 437
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
i.MX8: image_format_properties_unchecked returns None #2192
Comments
Fighter19
added a commit
to Fighter19/vulkano
that referenced
this issue
Apr 24, 2023
Fix crash on Vivante GPU (vulkano-rs#2192)
Fighter19
added a commit
to Fighter19/vulkano
that referenced
this issue
Apr 24, 2023
Fix crash on Vivante GPU (vulkano-rs#2192)
5 tasks
5 tasks
Fighter19
added a commit
to Fighter19/vulkano
that referenced
this issue
Apr 25, 2023
Fix crash on Vivante GPU (vulkano-rs#2192) by properly determining when to include seperate stencil usage.
Rua
pushed a commit
that referenced
this issue
Apr 25, 2023
Fix crash on Vivante GPU (#2192) by properly determining when to include seperate stencil usage.
hakolao
pushed a commit
to hakolao/vulkano
that referenced
this issue
Feb 20, 2024
Fix crash on Vivante GPU (vulkano-rs#2192) by properly determining when to include seperate stencil usage.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
main.rs
file that demonstrates the issue: see triangle exampleIssue
The triangle example doesn't work as image_format_properties_unchecked returns None, because "vkGetPhysicalDeviceImageFormatProperties2KHR(): Returned error VK_ERROR_FORMAT_NOT_SUPPORTED."
I assume this is caused due to the change b968451, which appears that it would have has_seperate_stencil_usage evaluate to false, while it seems it would evaluate to true now (see physical.rs in b958451#diff-5f03afc2104ee2633b0acea54a2cc12d07e4a4a626e820fb3b3fc8ff93ef64d0L1006).
Manually setting has_seperate_stencil_usage to false using a debugger, will make the call succeed.
See log including validation layer output here:
error.log
(src/main.rs corresponds to examples/src/bin/triangle.rs)
The text was updated successfully, but these errors were encountered: