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
https://godbolt.org/z/zTr5qY6Ec
#version 460 #extension GL_EXT_shader_explicit_arithmetic_types_int64 : require #extension GL_EXT_buffer_reference2 : require layout(set = 0, binding = 0) restrict readonly buffer SSBO_0 { uint64_t address; }; struct Data { uint a; uint b; uint c; int d; uint e; }; layout(set = 0, binding = 1) restrict readonly buffer SSBO_1 { Data data[]; } InBuffer; layout(buffer_reference) buffer MyBuffer { Data data[]; }; void main() { MyBuffer(address).data[0] = InBuffer.data[0]; }
will produce OpStore %34 %32 Aligned 0 which we are going to ban in https://gitlab.khronos.org/vulkan/vulkan/-/merge_requests/7210
OpStore %34 %32 Aligned 0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://godbolt.org/z/zTr5qY6Ec
will produce
OpStore %34 %32 Aligned 0
which we are going to ban in https://gitlab.khronos.org/vulkan/vulkan/-/merge_requests/7210The text was updated successfully, but these errors were encountered: