Pim Schreurs
Modernize the whole codebase; improve rendering
8194362
raw
history blame contribute delete
164 Bytes
uniform float opacity;
uniform sampler2D tDiffuse;
varying vec2 vUv;
void main() {
vec4 texel = texture2D( tDiffuse, vUv );
gl_FragColor = opacity * texel;
}