mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 03:32:46 +00:00
20 lines
394 B
Plaintext
20 lines
394 B
Plaintext
#version 310 es
|
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
|
|
|
layout(binding = 1, std430) buffer SSBO1
|
|
{
|
|
ivec4 outputs[];
|
|
} _21;
|
|
|
|
layout(binding = 0, std430) buffer SSBO0
|
|
{
|
|
ivec4 inputs[];
|
|
} _27;
|
|
|
|
void main()
|
|
{
|
|
uint ident = gl_GlobalInvocationID.x;
|
|
_21.outputs[ident] = mix(ivec4(0), ivec4(1), notEqual((_27.inputs[ident] & ivec4(3)), ivec4(uvec4(0u))));
|
|
}
|
|
|