Files
oak-editor/effects/shaders/common.frag
T
2019-03-13 16:55:49 +11:00

9 lines
167 B
GLSL

#version 110
uniform sampler2D tex;
varying vec2 vTexCoord;
void main(void) {
vec4 textureColor = texture2D(tex, vTexCoord);
gl_FragColor = textureColor;
}