mirror of
https://github.com/halpz/re3.git
synced 2025-04-25 12:05:47 +00:00
19 lines
294 B
GLSL
19 lines
294 B
GLSL
uniform sampler2D tex0;
|
|
uniform sampler2D tex1;
|
|
|
|
FSIN vec4 v_color;
|
|
FSIN vec2 v_tex0;
|
|
FSIN vec2 v_tex1;
|
|
FSIN float v_fog;
|
|
|
|
void
|
|
main(void)
|
|
{
|
|
vec4 color;
|
|
color = v_color*texture(tex0, vec2(v_tex0.x, 1.0-v_tex0.y));
|
|
color *= texture(tex1, vec2(v_tex1.x, 1.0-v_tex1.y));
|
|
|
|
FRAGCOLOR(color);
|
|
}
|
|
|