We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Line 663 of amber_converter.py has:
amber_converter.py
result += f" BIND BUFFER {ssbo_name} AS storage DESCRIPTOR_SET 0 BINDING 0\n"
This always uses binding 0, even if the JSON data specifies a different binding, as in the following:
{ "$compute": { "buffer": { "fields": [ { "type": "uint", "data": [0] } ], "binding": 1 }, "num_groups": [1, 1, 1] } }
The text was updated successfully, but these errors were encountered:
paulthomson
No branches or pull requests
Line 663 of
amber_converter.py
has:This always uses binding 0, even if the JSON data specifies a different binding, as in the following:
The text was updated successfully, but these errors were encountered: