mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 20:20:18 +01:00
6 lines
67 B
GLSL
6 lines
67 B
GLSL
// color pass-through
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = gl_Color;
|
|
}
|