mirror of
https://github.com/KhronosGroup/SPIRV-Cross.git
synced 2024-11-09 22:00:05 +00:00
15 lines
229 B
GLSL
15 lines
229 B
GLSL
#version 310 es
|
|
precision mediump float;
|
|
|
|
layout(location = 0) out vec4 FragColor;
|
|
layout(location = 0) in vec4 vA;
|
|
layout(location = 1) in vec4 vB;
|
|
|
|
void main()
|
|
{
|
|
if (gl_FrontFacing)
|
|
FragColor = vA;
|
|
else
|
|
FragColor = vB;
|
|
}
|