mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 20:20:18 +01:00
8 lines
154 B
GLSL
8 lines
154 B
GLSL
|
|
void main() {
|
|
gl_Position = gl_Vertex;
|
|
if (gl_Position.x < 0.5)
|
|
gl_FrontColor = vec4(1.0, 0.0, 0.0, 1.0);
|
|
else
|
|
gl_FrontColor = gl_Color;
|
|
}
|