ObjToSchematic/resources/shaders/debug_fragment.fs
2022-03-21 21:32:45 +00:00

8 lines
104 B
GLSL

precision mediump float;
varying vec3 v_colour;
void main() {
gl_FragColor = vec4(v_colour, 1.0);
}