ObjToSchematic/res/shaders/debug_fragment.fs

8 lines
93 B
Forth
Raw Normal View History

2022-03-08 02:45:06 +08:00
precision mediump float;
2022-05-15 00:41:27 +08:00
varying vec4 v_colour;
2022-03-08 02:45:06 +08:00
void main() {
2022-05-15 00:41:27 +08:00
gl_FragColor = v_colour;
2022-03-08 02:45:06 +08:00
}