mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-01-22 09:01:57 -05:00
9 lines
170 B
GLSL
9 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;
|
|
}
|
|
|