mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-10 19:00:34 +00:00
reorganize shaders; use modulate flag; update librw
This commit is contained in:
parent
2bd8be5872
commit
6662e60b63
46 changed files with 64 additions and 120 deletions
|
@ -1,19 +0,0 @@
|
|||
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"
|
||||
|
||||
;
|
Loading…
Add table
Add a link
Reference in a new issue