You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
180 B
13 lines
180 B
4 months ago
|
#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];
|
||
|
}
|