RetroArch/reference/shaders/comp/struct-layout.comp
Brad Parker 9ae6075535 Squashed 'deps/SPIRV-Cross/' content from commit 9ccd1ae
git-subtree-dir: deps/SPIRV-Cross
git-subtree-split: 9ccd1aea4201ff5d79c09808567348d0d3ab0452
2016-12-20 13:17:07 -05:00

25 lines
383 B
Plaintext

#version 310 es
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
struct Foo
{
mat4 m;
};
layout(binding = 1, std430) buffer SSBO2
{
Foo out_data[];
} _23;
layout(binding = 0, std430) buffer SSBO
{
Foo in_data[];
} _30;
void main()
{
uint ident = gl_GlobalInvocationID.x;
_23.out_data[ident].m = _30.in_data[ident].m * _30.in_data[ident].m;
}