mirror of
https://github.com/aap/librw.git
synced 2025-02-10 09:55:06 +00:00
19 lines
381 B
PHP
19 lines
381 B
PHP
|
const char *im3d_vert_src =
|
||
|
"VSIN(ATTRIB_POS) vec3 in_pos;\n"
|
||
|
|
||
|
"VSOUT vec4 v_color;\n"
|
||
|
"VSOUT vec2 v_tex0;\n"
|
||
|
"VSOUT float v_fog;\n"
|
||
|
|
||
|
"void\n"
|
||
|
"main(void)\n"
|
||
|
"{\n"
|
||
|
" vec4 Vertex = u_world * vec4(in_pos, 1.0);\n"
|
||
|
" vec4 CamVertex = u_view * Vertex;\n"
|
||
|
" gl_Position = u_proj * CamVertex;\n"
|
||
|
" v_color = in_color;\n"
|
||
|
" v_tex0 = in_tex0;\n"
|
||
|
" v_fog = DoFog(gl_Position.w);\n"
|
||
|
"}\n"
|
||
|
;
|