Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
points_vertex_shader.h
1//import <GLUP/current_profile/vertex_shader_preamble.h>
2//import <GLUPES/vertex_shader_state.h>
3//import <GLUP/stdglup.h>
4//import <GLUP/current_profile/toggles.h>
5//import <GLUP/current_profile/primitive.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 vec4 color;
12glup_out vec4 tex_coord;
13glup_out float clip_dist;
14glup_flat glup_out float depth_radius;
15glup_flat glup_out glup_id primitive_id;
16
17void main() {
18 if(glupIsEnabled(GLUP_CLIPPING)) {
19 clip_dist = dot(vertex_in, GLUP_VS.world_clip_plane);
20 }
21 if(glupIsEnabled(GLUP_PICKING)) {
22#ifdef GLUP_ES_100
23 primitive_id = float(int(vertex_id_in + 0.5)) + 0.5;
24#else
25 primitive_id = int(vertex_id_in + 0.5);
26#endif
27 }
28 if(glupIsEnabled(GLUP_VERTEX_COLORS)) {
29 color = color_in;
30 }
31 if(glupIsEnabled(GLUP_TEXTURING)) {
32 tex_coord = GLUP_VS.texture_matrix * tex_coord_in;
33 }
34 if(glup_primitive == GLUP_POINTS) {
35 gl_PointSize = GLUP_VS.point_size;
36 }
37 gl_Position = GLUP_VS.modelviewprojection_matrix * vertex_in;
38 // TODO (depth radius corresponds to maximum difference of depth,
39 // at the center of the displayed GL_POINT).
40 depth_radius = 0.001;
41}
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< 4, Numeric::float64 > vec4
Represents points and vectors in 4d.
Definition geometry.h:71