You've already forked minecraft-assets
12 lines
156 B
GLSL
12 lines
156 B
GLSL
#version 150
|
|
|
|
uniform sampler2D DiffuseSampler;
|
|
|
|
in vec2 texCoord;
|
|
|
|
out vec4 fragColor;
|
|
|
|
void main() {
|
|
fragColor = texture(DiffuseSampler, texCoord);
|
|
}
|