mirror of
https://github.com/libretro/RetroArch
synced 2025-02-01 20:54:10 +00:00
5af5222249
- https://github.com/KhronosGroup/SPIRV-Cross/commit/ 66a407285e36a0f772e3209cb86ded6e3d900f6a
22 lines
518 B
GLSL
22 lines
518 B
GLSL
#version 310 es
|
|
|
|
uniform vec4 UBO[8];
|
|
layout(location = 0) out vec4 oA;
|
|
layout(location = 1) out vec4 oB;
|
|
layout(location = 2) out vec4 oC;
|
|
layout(location = 3) out vec4 oD;
|
|
layout(location = 4) out vec4 oE;
|
|
layout(location = 5) out vec4 oF;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = vec4(0.0);
|
|
oA = UBO[0];
|
|
oB = vec4(UBO[1].xy, UBO[1].zw);
|
|
oC = vec4(UBO[2].x, UBO[3].xyz);
|
|
oD = vec4(UBO[4].xyz, UBO[4].w);
|
|
oE = vec4(UBO[5].x, UBO[5].y, UBO[5].z, UBO[5].w);
|
|
oF = vec4(UBO[6].x, UBO[6].zw, UBO[7].x);
|
|
}
|
|
|