ObjToSchematic/res/shaders/debug_fragment.fs
2022-03-23 21:59:50 +00:00

8 lines
104 B
GLSL

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