mirror of
https://github.com/RPCS3/glslang.git
synced 2024-12-03 00:28:28 +00:00
13 lines
184 B
GLSL
13 lines
184 B
GLSL
|
#version 130
|
||
|
|
||
|
attribute vec4 color;
|
||
|
varying vec4 colorOut[6];
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
for (int i = 1; i < 5; ++i)
|
||
|
colorOut[i] = color;
|
||
|
|
||
|
gl_Position = colorOut[2];
|
||
|
}
|