Files
2017-02-18 13:36:40 +00:00

10 lines
153 B
GLSL

#version 120
uniform sampler2D DiffuseSampler;
varying vec2 texCoord;
void main(){
gl_FragColor = texture2D(DiffuseSampler, texCoord);
}