diff options
author | aap <aap@papnet.eu> | 2021-02-06 16:33:17 +0100 |
---|---|---|
committer | aap <aap@papnet.eu> | 2021-02-06 16:33:17 +0100 |
commit | 6662e60b63d3765ad703d23c28a2c17822b58348 (patch) | |
tree | 70fbd3b1f1fcc7190ea14d8b51bfa4cd6847e4f6 /src/extras/shaders/obj/screenDroplet_frag.inc | |
parent | Fix inverted vertical camera (diff) | |
download | re3-6662e60b63d3765ad703d23c28a2c17822b58348.tar re3-6662e60b63d3765ad703d23c28a2c17822b58348.tar.gz re3-6662e60b63d3765ad703d23c28a2c17822b58348.tar.bz2 re3-6662e60b63d3765ad703d23c28a2c17822b58348.tar.lz re3-6662e60b63d3765ad703d23c28a2c17822b58348.tar.xz re3-6662e60b63d3765ad703d23c28a2c17822b58348.tar.zst re3-6662e60b63d3765ad703d23c28a2c17822b58348.zip |
Diffstat (limited to 'src/extras/shaders/obj/screenDroplet_frag.inc')
-rw-r--r-- | src/extras/shaders/obj/screenDroplet_frag.inc | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/extras/shaders/obj/screenDroplet_frag.inc b/src/extras/shaders/obj/screenDroplet_frag.inc new file mode 100644 index 00000000..dd393b02 --- /dev/null +++ b/src/extras/shaders/obj/screenDroplet_frag.inc @@ -0,0 +1,20 @@ +const char *screenDroplet_frag_src = +"uniform sampler2D tex0;\n" +"uniform sampler2D tex1;\n" + +"FSIN vec4 v_color;\n" +"FSIN vec2 v_tex0;\n" +"FSIN vec2 v_tex1;\n" +"FSIN float v_fog;\n" + +"void\n" +"main(void)\n" +"{\n" +" vec4 color;\n" +" color = v_color*texture(tex0, vec2(v_tex0.x, 1.0-v_tex0.y));\n" +" color *= texture(tex1, vec2(v_tex1.x, 1.0-v_tex1.y));\n" + +" FRAGCOLOR(color);\n" +"}\n" + +; |