mirror of
https://github.com/RPCS3/glslang.git
synced 2024-11-27 21:20:30 +00:00
11 lines
106 B
GLSL
11 lines
106 B
GLSL
|
#version 130
|
||
|
|
||
|
varying vec4 Color;
|
||
|
|
||
|
uniform int i;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_FragData[i] = Color;
|
||
|
}
|