-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Enable arbitrary Vulkan extensions in a wgpu-compatible way #7324
Comments
I've wondered about some kind of hal callback that gives you all the supported extensions and then allows you to push more into the vector. |
I've discussed this with @cwfitzgerald recently, and we agreed that a callback is probably the best option. In the mean time, you can create the vulkan device yourself and then pass it to wgpu. It's not that hard, mostly just copy pasting from wgpu_hal's device initialization code: https://github.com/JMS55/dlss_wgpu/blob/main/src/request_device.rs |
Some kind of callback is fine, though we need to mind various things:
We might also want to build a macro to make this easier, but that doesn't have to be in v1 |
I'm going to have a go at adding a callback, here is a rough idea of what we need to do for a callback from looking around the code:
|
Btw I would also like the same thing for instance-level vulkan extensions, not just device. |
My initial idea is at https://github.com/Vecvec/wgpu/tree/create-device-hal-callback. |
Is your feature request related to a problem? Please describe.
A number of advanced use cases want to use wgpu as an API for rendering, but with advanced features which shouldn't need an API in wgpu. For example, #7317, #6149, VK_ANDROID_external_memory_android_hardware_buffer. However, currently this involves adding things into wgpu's Vulkan device creation (as a PR to this repo). This is... awkward.
Describe the solution you'd like
Research into how to make this work. @cwfitzgerald mentions that this also involves enabling "features" in the extensions, which makes this messy?
Describe alternatives you've considered
The text was updated successfully, but these errors were encountered: