-
Notifications
You must be signed in to change notification settings - Fork 960
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
Mask Off Haswell Devices on Vulkan #4715
Comments
I have a broader patch that should take care of this, I was looking through our issues to see which ones the PR would take care of. Will put it up soon. |
I'm curious why Haswell isn't compliant? |
Basically the gen7 hardware doesn't have the features needed to meet vulkan 1.0. On the proprietary drivers, vulkan support only shows up in skylake (gen8) |
Oh, that's annoying. I've been doing most of my development on a haswell laptop :( |
Wgpu will still work for you, it will just be via GLES 3.2 instead of Vulkan. |
Similarly to #4709, we should remove all vulkan instances of haswell gpus. These only show up on mesa https://gitlab.freedesktop.org/mesa/mesa/-/blob/242c7a651308f43d5f6f2590717fd72f44eba3ca/src/intel/vulkan/anv_device.c#L769-775. They aren't compliant and will never be compliant. I can't find the post now, but jekstrand said that trying to support vulkan on haswell was a mistake as it gave people the impression it was possible.
Maybe we have an instance flag that disables masking if people really care.
cc @teoxoy
The text was updated successfully, but these errors were encountered: