mirror of
https://github.com/aap/librw.git
synced 2025-02-09 17:35:06 +00:00
19 lines
381 B
C++
19 lines
381 B
C++
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"
|
|
;
|