diff options
author | erorcun <erorcunerorcun@hotmail.com.tr> | 2021-02-08 11:21:53 +0100 |
---|---|---|
committer | erorcun <erorcunerorcun@hotmail.com.tr> | 2021-02-08 11:21:53 +0100 |
commit | 0eb191371388e5b25fbc957ca928c457fc544b21 (patch) | |
tree | b3203e68d3f74c005d2fe0689bce7cf3240dd713 /src/extras/shaders/obj/simple_frag.inc | |
parent | Don't show menu map and new languages if gamefiles isn't copied (diff) | |
parent | reorganize shaders; use modulate flag; update librw (diff) | |
download | re3-0eb191371388e5b25fbc957ca928c457fc544b21.tar re3-0eb191371388e5b25fbc957ca928c457fc544b21.tar.gz re3-0eb191371388e5b25fbc957ca928c457fc544b21.tar.bz2 re3-0eb191371388e5b25fbc957ca928c457fc544b21.tar.lz re3-0eb191371388e5b25fbc957ca928c457fc544b21.tar.xz re3-0eb191371388e5b25fbc957ca928c457fc544b21.tar.zst re3-0eb191371388e5b25fbc957ca928c457fc544b21.zip |
Diffstat (limited to 'src/extras/shaders/obj/simple_frag.inc')
-rw-r--r-- | src/extras/shaders/obj/simple_frag.inc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/extras/shaders/obj/simple_frag.inc b/src/extras/shaders/obj/simple_frag.inc new file mode 100644 index 00000000..614d79a0 --- /dev/null +++ b/src/extras/shaders/obj/simple_frag.inc @@ -0,0 +1,19 @@ +const char *simple_frag_src = +"uniform sampler2D tex0;\n" + +"FSIN vec4 v_color;\n" +"FSIN vec2 v_tex0;\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.rgb = mix(u_fogColor.rgb, color.rgb, v_fog);\n" +" DoAlphaTest(color.a);\n" + +" FRAGCOLOR(color);\n" +"}\n" + +; |