Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
thick_lines_fragment_shader.h
1//import <GLUP/current_profile/fragment_shader_preamble.h>
2//import <GLUPES/fragment_shader_state.h>
3//import <GLUP/stdglup.h>
4//import <GLUP/current_profile/toggles.h>
5//import <GLUP/current_profile/primitive.h>
6//import <GLUPES/fragment_shader_utils.h>
7
8glup_in float clip_dist;
9glup_in vec4 color;
10glup_in vec4 tex_coord;
11glup_flat glup_in glup_id primitive_id;
12glup_in float R;
13glup_in vec2 p1_ndc;
14glup_in vec2 p2_ndc;
15
16void main() {
17
18 if(glupIsEnabled(GLUP_CLIPPING)) {
19 if(clip_dist < 0.0) {
20 discard;
21 }
22 }
23
24 // Create nicer joints between overlapping thick lines by creating a
25 // small disk over the joints
26
27 vec2 p_ndc = vec2(
28 2.0 * ( (gl_FragCoord.x - GLUP.viewport[0]) / GLUP.viewport[2] - 0.5),
29 2.0 * ( (gl_FragCoord.y - GLUP.viewport[1]) / GLUP.viewport[3] - 0.5)
30 );
31
32 vec2 U = p2_ndc - p1_ndc;
33 vec2 V1 = p_ndc - p1_ndc;
34 vec2 V2 = p_ndc - p2_ndc;
35
36 if(dot(V1,U) < 0.0 && dot(V1,V1) > R*R) {
37 discard;
38 }
39
40 if(dot(V2,U) > 0.0 && dot(V2,V2) > R*R) {
41 discard;
42 }
43
44 if(glupIsEnabled(GLUP_PICKING)) {
45 glup_FragColor = glup_picking(int(primitive_id));
46 return;
47 }
48
49 vec4 result;
50 if(glupIsEnabled(GLUP_VERTEX_COLORS)) {
51 result = color;
52 } else {
53 result = GLUP.mesh_color;
54 }
55
56 if(glupIsEnabled(GLUP_TEXTURING) && !glupIsEnabled(GLUP_NORMAL_MAPPING)) {
57 result = glup_texturing(result, tex_coord);
58 }
59 glup_FragColor = result;
60 glup_alpha_discard();
61}
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