-
Notifications
You must be signed in to change notification settings - Fork 564
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
c: allow access to gl_plain_uniforms resources #2373
c: allow access to gl_plain_uniforms resources #2373
Conversation
@@ -226,6 +226,7 @@ typedef enum spvc_resource_type | |||
SPVC_RESOURCE_TYPE_ACCELERATION_STRUCTURE = 12, | |||
SPVC_RESOURCE_TYPE_RAY_QUERY = 13, | |||
SPVC_RESOURCE_TYPE_SHADER_RECORD_BUFFER = 14, | |||
SPVC_RESOURCE_TYPE_GL_PLAIN_UNIFORM = 15, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need to bump SPVC_C_API_VERSION_MINOR, as well as spirv-cross-abi-minor in CMakeLists.txt when you add anything backwards compatible to the headers.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit, otherwise fine.
f895458
to
b2171de
Compare
Bumped C minor ABI version to 63 in b2171de |
Fixes #2369