mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-10 04:20:06 +00:00
13 lines
180 B
GLSL
13 lines
180 B
GLSL
#version 140
|
|
|
|
attribute vec4 color;
|
|
out vec4 colorOut[6];
|
|
|
|
void main()
|
|
{
|
|
for (int i = 1; i < 5; ++i)
|
|
colorOut[i] = color;
|
|
|
|
gl_Position = colorOut[2];
|
|
}
|