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 <GLUPGLSL/state.h>
3//import <GLUP/stdglup.h>
4//import <GLUP/current_profile/toggles.h>
5//import <GLUP/current_profile/primitive.h>
6
7in vec4 vertex_in;
8in vec4 color_in;
9in vec4 tex_coord_in;
10
11out VertexData {
12 vec4 color;
13 vec4 tex_coord;
14 float depth_radius;
15} VertexOut;
16
17void main() {
18#ifndef GLUP_NO_GL_CLIPPING
19 if(glupIsEnabled(GLUP_CLIPPING)) {
20 gl_ClipDistance[0] = dot(
21 vertex_in, GLUP.world_clip_plane
22 );
23 } else {
24 gl_ClipDistance[0] = 0.0;
25 }
26#endif
27 if(glupIsEnabled(GLUP_VERTEX_COLORS)) {
28 VertexOut.color = color_in;
29 }
30 if(glupIsEnabled(GLUP_TEXTURING)) {
31 if(glupIsEnabled(GLUP_INDIRECT_TEXTURING)) {
32 VertexOut.tex_coord = tex_coord_in;
33 } else {
34 VertexOut.tex_coord = GLUP.texture_matrix * tex_coord_in;
35 }
36 }
37 gl_PointSize = GLUP.point_size;
38 gl_Position = GLUP.modelviewprojection_matrix*vertex_in;
39
40 // TODO (depth radius corresponds to maximum difference of depth,
41 // at the center of the displayed GL_POINT).
42 VertexOut.depth_radius = 0.001;
43}
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