Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
vertex_shader.h
1//import <GLUP/current_profile/vertex_shader_preamble.h>
2//import <GLUP/stdglup.h>
3//import <GLUP/current_profile/toggles.h>
4//import <GLUP/current_profile/primitive.h>
5//import <GLUPES/vertex_shader_state.h>
6
7glup_in vec4 vertex_in;
8glup_in vec4 color_in;
9glup_in vec4 tex_coord_in;
10glup_in highp float vertex_id_in;
11glup_out vec3 vertex_view_space;
12glup_out float clip_dist;
13glup_out vec4 color;
14glup_out vec4 tex_coord;
15glup_out vec4 mesh_tex_coord;
16glup_flat glup_out glup_id primitive_id;
17
18#if GLUP_PRIMITIVE_DIMENSION==2
19glup_in vec4 normal_in;
20glup_out vec3 normal;
21#endif
22
23void main() {
24
25 if(glupIsEnabled(GLUP_CLIPPING)) {
26 clip_dist = dot(
27 vertex_in, GLUP_VS.world_clip_plane
28 );
29 }
30
31 if(glupIsEnabled(GLUP_PICKING)) {
32#ifdef GLUP_ES_100
33 // Note: we need to add 0.5, else there are some precision
34 // issues, and the integer mod() operation creates random
35 // values...
36 primitive_id = float(
37 int(vertex_id_in+0.5)/glup_primitive_nb_vertices
38 )+0.5;
39#else
40 primitive_id = int(vertex_id_in + 0.5)/glup_primitive_nb_vertices;
41#endif
42 }
43
44 if(glupIsEnabled(GLUP_LIGHTING)) {
45 vertex_view_space = (GLUP_VS.modelview_matrix * vertex_in).xyz;
46#if GLUP_PRIMITIVE_DIMENSION==2
47 if(glupIsEnabled(GLUP_VERTEX_NORMALS)) {
48 normal = GLUP_VS.normal_matrix*normal_in.xyz;
49 }
50#endif
51 }
52
53 if(glupIsEnabled(GLUP_VERTEX_COLORS)) {
54 color = color_in;
55 }
56
57 if(glupIsEnabled(GLUP_TEXTURING)) {
58 if(glupIsEnabled(GLUP_INDIRECT_TEXTURING)) {
59 tex_coord = tex_coord_in;
60 } else {
61 tex_coord = GLUP_VS.texture_matrix * tex_coord_in;
62 }
63 }
64
65 if(glupIsEnabled(GLUP_DRAW_MESH)) {
66 mesh_tex_coord = get_mesh_tex_coord(int(vertex_id_in + 0.5));
67 }
68
69 gl_Position = GLUP_VS.modelviewprojection_matrix * vertex_in;
70}
T dot(const vecng< 3, T > &v1, const vecng< 3, T > &v2)
Computes the dot product of 2 vectors. vecng
Definition vecg.h:916
vecng< 3, Numeric::float64 > vec3
Represents points and vectors in 3d.
Definition geometry.h:65
vecng< 4, Numeric::float64 > vec4
Represents points and vectors in 4d.
Definition geometry.h:71