mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-18 08:49:22 +00:00
cam fix; forgot some shaders
This commit is contained in:
parent
a35b3b4602
commit
1906a08f72
5 changed files with 49 additions and 4 deletions
23
src/extras/shaders/im2d_UV2_gl.inc
Normal file
23
src/extras/shaders/im2d_UV2_gl.inc
Normal file
|
@ -0,0 +1,23 @@
|
|||
const char *im2d_UV2_vert_src =
|
||||
"uniform vec4 u_xform;\n"
|
||||
|
||||
"VSIN(ATTRIB_POS) vec4 in_pos;\n"
|
||||
|
||||
"VSOUT vec4 v_color;\n"
|
||||
"VSOUT vec2 v_tex0;\n"
|
||||
"VSOUT vec2 v_tex1;\n"
|
||||
"VSOUT float v_fog;\n"
|
||||
|
||||
"void\n"
|
||||
"main(void)\n"
|
||||
"{\n"
|
||||
" gl_Position = in_pos;\n"
|
||||
" gl_Position.w = 1.0;\n"
|
||||
" gl_Position.xy = gl_Position.xy * u_xform.xy + u_xform.zw;\n"
|
||||
" v_fog = DoFog(gl_Position.z);\n"
|
||||
" gl_Position.xyz *= gl_Position.w;\n"
|
||||
" v_color = in_color;\n"
|
||||
" v_tex0 = in_tex0;\n"
|
||||
" v_tex1 = in_tex1;\n"
|
||||
"}\n"
|
||||
;
|
Loading…
Add table
Add a link
Reference in a new issue