Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
spheres_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//import <GLUP/fragment_ray_tracing.h>
8
9in VertexData {
10 vec4 color;
11 vec4 tex_coord;
12 vec3 center_world_space;
13 float radius;
14} FragmentIn;
15
16void main(void) {
17
18 vec3 C = FragmentIn.center_world_space;
19 float r = FragmentIn.radius;
20
21 if(glupIsEnabled(GLUP_CLIPPING)) {
22 if(GLUP.clipping_mode == GLUP_CLIP_WHOLE_CELLS) {
23 if(dot(vec4(C,1.0),GLUP.world_clip_plane) < 0.0) {
24 discard;
25 }
26 } else if(GLUP.clipping_mode == GLUP_CLIP_STRADDLING_CELLS) {
27 float dist =
28 abs(dot(vec4(C,1.0),GLUP.world_clip_plane)) /
29 length(GLUP.world_clip_plane.xyz) ;
30 if(dist > r) {
31 discard;
32 }
33 }
34 }
35
36 Ray R = glup_primary_ray();
37 vec3 M,N;
38
39 if(
40 glupIsEnabled(GLUP_CLIPPING) &&
41 GLUP.clipping_mode == GLUP_CLIP_SLICE_CELLS
42 ) {
43 N = GLUP.world_clip_plane.xyz;
44 float w = GLUP.world_clip_plane.w;
45 float t = -(w + dot(N,R.O)) / dot(N,R.V);
46 M = R.O + t*R.V;
47 if(dot(M-C,M-C) > r*r) {
48 discard;
49 }
50 } else {
51 vec3 D = R.O-C;
52 float a = dot(R.V,R.V);
53 float b = 2.0*dot(R.V,D);
54 float c = dot(D,D)-r*r;
55 float delta = b*b-4.0*a*c;
56
57 if(delta < 0.0) {
58 discard;
59 }
60 float t = (-b-sqrt(delta))/(2.0*a);
61 M = R.O + t*R.V;
62 N = M-C;
63 }
64
65 if(
66 glupIsEnabled(GLUP_CLIPPING) &&
67 GLUP.clipping_mode == GLUP_CLIP_STANDARD
68 ) {
69 if(dot(vec4(M,1.0),GLUP.world_clip_plane) < 0.0) {
70 discard;
71 }
72 }
73
74 glup_update_depth(M);
75
76 if(glupIsEnabled(GLUP_PRIMITIVE_FILTERING)) {
77 glup_primitive_filter(gl_PrimitiveID);
78 }
79
80 if(glupIsEnabled(GLUP_PICKING)) {
81 glup_FragColor = glup_picking(gl_PrimitiveID);
82 return;
83 }
84
85 vec4 result;
86 if(glupIsEnabled(GLUP_VERTEX_COLORS)) {
87 result = FragmentIn.color;
88 } else {
89 result = GLUP.front_color;
90 }
91 if(glupIsEnabled(GLUP_TEXTURING)) {
92 result = glup_texturing(result, FragmentIn.tex_coord);
93 }
94 if(glupIsEnabled(GLUP_LIGHTING)) {
95 N = normalize(GLUP.normal_matrix*N);
96 if(
97 glupIsEnabled(GLUP_CLIPPING) &&
98 GLUP.clipping_mode == GLUP_CLIP_SLICE_CELLS &&
99 N.z < 0.0
100 ) {
101 N = -N;
102 }
103 result = glup_lighting(result, N);
104 }
105 glup_FragColor = result;
106 glup_alpha_discard();
107}
double length(vec3 v)
Computes the length of a vector.
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< 3, Numeric::float64 > vec3
Represents points and vectors in 3d.
Definition geometry.h:65
vecng< 4, Numeric::float64 > vec4
Represents points and vectors in 4d.
Definition geometry.h:71