mirror of
https://github.com/libretro/RetroArch
synced 2025-02-09 00:40:09 +00:00
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];
|
||
|
}
|
||
|
|