neo screen droplets

This commit is contained in:
aap
2020-11-19 19:07:32 +01:00
parent 8963cbcb7c
commit 07fe099b4e
21 changed files with 1034 additions and 8 deletions

View File

@@ -0,0 +1,18 @@
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);
}