fireball/lib/renderers/shaders/ShaderLib/background_frag.glsl

10 lines
100 B
Plaintext
Raw Normal View History

2018-12-25 17:29:22 +03:30
uniform sampler2D t2D;
varying vec2 vUv;
void main() {
gl_FragColor = texture2D( t2D, vUv );
}