Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
thick_lines_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 vec4 normal_in;
11glup_in highp float vertex_id_in;
12glup_out float clip_dist;
13glup_out vec4 color;
14glup_out vec4 tex_coord;
15glup_flat glup_out glup_id primitive_id;
16glup_out float R;
17glup_out vec2 p1_ndc;
18glup_out vec2 p2_ndc;
19
20
21void emit_vertex_2(in vec4 p_world, in vec4 p_clip_space, in vec2 offset) {
22 if(glupIsEnabled(GLUP_CLIPPING)) {
23 clip_dist = dot(
24 p_world, GLUP_VS.world_clip_plane
25 );
26 }
27 gl_Position = p_clip_space / p_clip_space.w ;
28 gl_Position.x += offset.x;
29 gl_Position.y += offset.y;
30 gl_Position.z -= 0.001; // TODO: polygon offset, do something smarter
31 if(glupIsEnabled(GLUP_VERTEX_COLORS)) {
32 color = color_in;
33 }
34 if(glupIsEnabled(GLUP_TEXTURING)) {
35 if(glupIsEnabled(GLUP_INDIRECT_TEXTURING)) {
36 tex_coord = tex_coord_in;
37 } else {
38 tex_coord = GLUP_VS.texture_matrix * tex_coord_in;
39 }
40 }
41}
42
43
44void main() {
45
46 R = 2.0*(GLUP_VS.mesh_width/(GLUP_VS.viewport[2]+GLUP_VS.viewport[3]));
47
48 vec4 p1_clipspace = GLUP_VS.modelviewprojection_matrix * vertex_in;
49 vec4 p2_clipspace = GLUP_VS.modelviewprojection_matrix * normal_in;
50
51 p1_ndc = p1_clipspace.xy / p1_clipspace.w;
52 p2_ndc = p2_clipspace.xy / p2_clipspace.w;
53
54 if(glupIsEnabled(GLUP_PICKING)) {
55#ifdef GLUP_ES_100
56 // Note: we need to add 0.5, else there are some precision
57 // issues, and the integer mod() operation creates random
58 // values...
59 primitive_id = float(
60 int(vertex_id_in+0.5)/glup_primitive_nb_vertices
61 )+0.5;
62#else
63 primitive_id = int(vertex_id_in + 0.5)/glup_primitive_nb_vertices;
64#endif
65 }
66
67 vec2 U = R*normalize(p2_ndc-p1_ndc);
68 vec2 V = vec2(U.y,-U.x);
69
70 int v_local_id = glup_mod(int(vertex_id_in+0.5),4);
71
72 if(v_local_id == 0) {
73 emit_vertex_2(vertex_in, p1_clipspace,-U-V);
74 } else if(v_local_id == 1) {
75 emit_vertex_2(vertex_in, p1_clipspace,-U+V);
76 } else if(v_local_id == 2) {
77 emit_vertex_2(normal_in, p2_clipspace, U-V);
78 } else {
79 emit_vertex_2(normal_in, p2_clipspace, U+V);
80 }
81
82}
vec3 normalize(vec3 v)
Computes a normalized vector.
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
vecng< 2, Numeric::float64 > vec2
Represents points and vectors in 2d.
Definition geometry.h:59