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