1
0
mirror of https://github.com/libretro/RetroArch synced 2025-04-03 01:21:10 +00:00
RetroArch/deps/SPIRV-Cross/shaders-msl-no-opt/components/fragment-output-component.pad-fragment.frag

11 lines
195 B
GLSL

#version 450
layout(location = 0, component = 0) out float FragColor0;
layout(location = 0, component = 1) out vec2 FragColor1;
void main()
{
FragColor0 = 1.0;
FragColor1 = vec2(2.0, 3.0);
}