mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-04 21:05:54 +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);
|
||
|
}
|
||
|
|