mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-10 12:30:05 +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];
|
||
|
}
|