Files
Terrarum/src/shaders/gl32shaperenderer.frag

12 lines
122 B
GLSL

#ifdef GL_ES
precision mediump float;
#endif
in vec4 v_col;
out vec4 fragColor;
void main() {
fragColor = v_col;
}