8 lines
106 B
GLSL
8 lines
106 B
GLSL
#version 100
|
|
precision mediump float;
|
|
|
|
varying vec4 v_Color;
|
|
|
|
void main() {
|
|
gl_FragColor = v_Color;
|
|
}
|