Skip to content
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

Open
DJMcNab opened this issue Mar 12, 2025 · 6 comments
Open

Enable arbitrary Vulkan extensions in a wgpu-compatible way #7324

DJMcNab opened this issue Mar 12, 2025 · 6 comments

Comments

@DJMcNab
Copy link
Contributor

DJMcNab commented Mar 12, 2025

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

@Vecvec
Copy link
Contributor

Vecvec commented Mar 12, 2025

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.

@JMS55
Copy link
Collaborator

JMS55 commented Mar 12, 2025

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

@cwfitzgerald
Copy link
Member

Some kind of callback is fine, though we need to mind various things:

  • The lifetime needs to be such that the closure can put its own borrows in the pnext chain. The pnext members need somewhere to live.
  • We need to document that we use the standard vk 1.N features, as users might need to search for those in the pnext chain.

We might also want to build a macro to make this easier, but that doesn't have to be in v1

@Vecvec
Copy link
Contributor

Vecvec commented Mar 12, 2025

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:

  • hal: Type added for what gets passed into the callback. (idk what to call this)
  • hal: An optional function that gets passed into adapter.open.
  • core: Moving validation for create device into it's own function call.
  • core: Add an extra function call with a callback.
  • wgpu: Add an extra function call with a callback.

@JMS55
Copy link
Collaborator

JMS55 commented Mar 13, 2025

Btw I would also like the same thing for instance-level vulkan extensions, not just device.

@Vecvec
Copy link
Contributor

Vecvec commented Mar 14, 2025

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants