mirror of
https://github.com/halpz/re3.git
synced 2025-04-24 11:36:58 +00:00
19 lines
330 B
C++
19 lines
330 B
C++
const char *simple_frag_src =
|
|
"uniform sampler2D tex0;\n"
|
|
|
|
"in vec4 v_color;\n"
|
|
"in vec2 v_tex0;\n"
|
|
"in float v_fog;\n"
|
|
|
|
"out vec4 color;\n"
|
|
|
|
"void\n"
|
|
"main(void)\n"
|
|
"{\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"
|
|
"}\n"
|
|
|
|
;
|