mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-21 02:50:09 +01:00
8 lines
138 B
Text
8 lines
138 B
Text
|
|
|
||
|
|
void main() {
|
||
|
|
gl_Position = gl_Vertex;
|
||
|
|
gl_FrontColor = vec4(0);
|
||
|
|
for (int i = 0; i < 4; ++i)
|
||
|
|
gl_FrontColor += gl_Color;
|
||
|
|
}
|