mirror of
https://github.com/libretro/RetroArch
synced 2025-02-01 00:32:46 +00:00
14 lines
196 B
Plaintext
14 lines
196 B
Plaintext
#version 450
|
|
layout(local_size_x = 1) in;
|
|
|
|
layout(std140, binding = 0) buffer SSBO
|
|
{
|
|
float a[16];
|
|
vec4 b[16];
|
|
};
|
|
|
|
void main()
|
|
{
|
|
b[gl_GlobalInvocationID.x] = vec4(a[gl_GlobalInvocationID.x]);
|
|
}
|