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

10 lines
100 B
Plaintext
Raw Permalink Normal View History

2018-12-25 13:59:22 +00:00
uniform sampler2D t2D;
varying vec2 vUv;
void main() {
gl_FragColor = texture2D( t2D, vUv );
}