mirror of
https://github.com/LucasDower/ObjToSchematic.git
synced 2024-12-15 02:59:55 +08:00
8 lines
104 B
GLSL
8 lines
104 B
GLSL
precision mediump float;
|
|
|
|
varying vec3 v_colour;
|
|
|
|
void main() {
|
|
gl_FragColor = vec4(v_colour, 1.0);
|
|
}
|