mirror of
https://github.com/libretro/RetroArch
synced 2025-02-08 15:40:14 +00:00
git-subtree-dir: deps/SPIRV-Cross git-subtree-split: d4b0625cbd7377e720b4fa1d63e6a3c09da5db63
19 lines
312 B
Plaintext
19 lines
312 B
Plaintext
#version 450
|
|
layout(local_size_x = 1, local_size_y = 2, local_size_z = 3) in;
|
|
|
|
layout(binding = 0, std430) buffer _6_8
|
|
{
|
|
float _m0[];
|
|
} _8;
|
|
|
|
layout(binding = 1, std430) buffer _6_9
|
|
{
|
|
float _m0[];
|
|
} _9;
|
|
|
|
void main()
|
|
{
|
|
_8._m0[gl_WorkGroupID.x] = _9._m0[gl_WorkGroupID.x] + _8._m0[gl_WorkGroupID.x];
|
|
}
|
|
|