mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-21 15:50:11 +01:00
8 lines
148 B
Text
8 lines
148 B
Text
|
|
|
||
|
|
void main() {
|
||
|
|
gl_FrontColor = gl_Color;
|
||
|
|
gl_Position = gl_Vertex;
|
||
|
|
if (gl_Position.x < 0.5)
|
||
|
|
gl_FrontColor = vec4(1.0, 0.0, 0.0, 1.0);
|
||
|
|
}
|