7 lines
67 B
GLSL
7 lines
67 B
GLSL
// color pass-through
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = gl_Color;
|
|
}
|