SPIRV-Cross/reference/shaders-no-opt/asm/comp/local-size-id.vk.asm.comp.vk
Hans-Kristian Arntzen 7c83fc22fa Add support for LocalSizeId.
WorkgroupSize builtin is deprecated in 1.6 and LocalSizeId is supported
in Vulkan starting with maintenance4.
2022-01-06 13:57:10 +01:00

19 lines
579 B
Plaintext

#version 450
layout(local_size_x_id = 3, local_size_y_id = 4, local_size_z = 2) in;
layout(constant_id = 1) const int _10 = 11;
layout(constant_id = 2) const int _11 = 12;
const uint _29 = (uint(int(gl_WorkGroupSize.x)) + 3u);
const uvec3 _30 = uvec3(_29, int(gl_WorkGroupSize.y), 2u);
layout(set = 0, binding = 0, std430) buffer SSBO
{
vec4 values[];
} _8;
void main()
{
_8.values[gl_GlobalInvocationID.x] = ((((_8.values[gl_GlobalInvocationID.x] + vec4(2.0)) + vec3(_30).xyzz) * float(int(gl_WorkGroupSize.x))) * float(int(gl_WorkGroupSize.y))) * float(int(2u));
}