6 lines
85 B
GLSL
6 lines
85 B
GLSL
precision mediump float;
|
|
uniform vec4 color;
|
|
|
|
void main() {
|
|
gl_FragColor = color;
|
|
}
|