Files
Terrarum/assets/rgbxmul.frag
2018-06-30 16:47:22 +09:00

22 lines
552 B
GLSL

#version 120
#ifdef GL_ES
precision mediump float;
#endif
varying vec4 v_color;
varying vec2 v_texCoords;
uniform sampler2D u_texture; // world texture, has alpha value that is meaningful
uniform sampler2D tex1; // lightmap texture
uniform vec2 tex1Offset;
uniform vec2 tex1Resolution;
void main() {
vec4 colorTex0 = texture2D(u_texture, v_texCoords + vec2(0.5, 0.5)); // world texture
vec4 colorTex1 = texture2D(tex1, v_texCoords); // lightmap (RGBA)
colorTex1 = vec4(colorTex1.xyz, 1.0);
gl_FragColor = colorTex0 * colorTex1;
}