SPIRV-Cross/reference/shaders/comp/mat3.comp
Hans-Kristian Arntzen 0ae2bcc3d0 Ensure that floating point literals are float.
Fixes regression from earlier workaround of std::to_string.
Update reference output.
2016-03-12 14:22:39 +01:00

15 lines
281 B
Plaintext

#version 310 es
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
layout(binding = 1, std430) buffer SSBO2
{
mat3 out_data[];
} _22;
void main()
{
uint ident = gl_GlobalInvocationID.x;
_22.out_data[ident] = mat3(vec3(10.0), vec3(20.0), vec3(40.0));
}