-
Notifications
You must be signed in to change notification settings - Fork 46
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
WGPUProgrammableStageDescriptor is actually for compute only #409
Comments
+1 for renaming to |
Do you mean flatten into |
Ah yeah flattening works as well, I'm not looking forward to the breaking change though. |
I forgot it's not flattened in the JS API, so probably just renaming makes more sense to match (it's easier anyway) |
Fixed tentatively, leaving |
Nov 25 meeting:
|
The thing called
WGPUProgrammableStageDescriptor
is only used inWGPUComputePipelineDescriptor
because we have independent definitions for the vertex/fragment equivalents, that have their own module/entryPoint/constants (WGPUVertexState
andWGPUFragmentState
).WGPUComputePipelineDescriptor
? (Future extensions would go there)WGPUProgrammableStageDescriptor
be renamed to be compute-specific?WGPUProgrammableStageDescriptor
? (This would make it slightly more uniform to add extensions that apply to all three; but we can already do that by allowing that extension to have multiple base structs.)The text was updated successfully, but these errors were encountered: