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