mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-09-12 00:56:40 -04:00
10 lines
170 B
GLSL
10 lines
170 B
GLSL
varying vec4 out_col;
|
|
varying vec2 out_uv;
|
|
uniform sampler2D texImage;
|
|
|
|
void main() {
|
|
vec4 col = texture(texImage, out_uv) * out_col;
|
|
gl_FragColor = col;
|
|
}
|
|
|