mirror of
https://github.com/LucasDower/ObjToSchematic.git
synced 2025-01-12 10:54:24 +08:00
11 lines
178 B
GLSL
11 lines
178 B
GLSL
precision mediump float;
|
|
|
|
uniform sampler2D u_texture;
|
|
|
|
varying vec2 v_texcoord;
|
|
|
|
void main() {
|
|
//gl_FragColor = v_colour;
|
|
gl_FragColor = texture2D(u_texture, v_texcoord);
|
|
}
|