Files
oak-editor/effects/common.frag
T
2018-11-18 02:22:11 +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;
}