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 <GLUPGLSL/state.h>
3//import <GLUP/stdglup.h>
4//import <GLUP/current_profile/toggles.h>
5//import <GLUP/current_profile/primitive.h>
6//import <GLUP/fragment_shader_utils.h>
7
8#ifndef GLUP_NO_GL_CLIPPING
9in float gl_ClipDistance[];
10#endif
11
12in VertexData {
13 vec4 vertex_clip_space;
14 vec4 color;
15 vec4 tex_coord;
16 vec4 mesh_tex_coord;
17} FragmentIn;
18
19in vec2 p1_ndc;
20in vec2 p2_ndc;
21in float R;
22
23
24void main() {
25
26#ifdef GLUP_GL_ES
27#ifndef GLUP_NO_GL_CLIPPING
28 if(glupIsEnabled(GLUP_CLIPPING) && (gl_ClipDistance[0] < 0.0)) {
29 discard;
30 }
31#endif
32#endif
33
34 // Create nicer joints between overlapping thick lines by creating a
35 // small disk over the joints
36
37 vec2 p_ndc = vec2(
38 2.0 * ( (gl_FragCoord.x - GLUP.viewport[0]) / GLUP.viewport[2] - 0.5),
39 2.0 * ( (gl_FragCoord.y - GLUP.viewport[1]) / GLUP.viewport[3] - 0.5)
40 );
41
42 vec2 U = p2_ndc - p1_ndc;
43 vec2 V1 = p_ndc - p1_ndc;
44 vec2 V2 = p_ndc - p2_ndc;
45
46 if(dot(V1,U) < 0 && dot(V1,V1) > R*R) {
47 discard;
48 }
49
50 if(dot(V2,U) > 0 && dot(V2,V2) > R*R) {
51 discard;
52 }
53
54 if(glupIsEnabled(GLUP_PRIMITIVE_FILTERING)) {
55 glup_primitive_filter(gl_PrimitiveID);
56 }
57
58 if(glupIsEnabled(GLUP_PICKING)) {
59 glup_FragColor = glup_picking(gl_PrimitiveID);
60 return;
61 }
62
63 vec4 result;
64 if(glupIsEnabled(GLUP_VERTEX_COLORS)) {
65 result = FragmentIn.color;
66 } else {
67 result = GLUP.mesh_color;
68 }
69
70 if(glupIsEnabled(GLUP_TEXTURING) && !glupIsEnabled(GLUP_NORMAL_MAPPING)) {
71 result = glup_texturing(result, FragmentIn.tex_coord);
72 }
73 glup_FragColor = result;
74 glup_alpha_discard();
75}
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