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 <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 <GLUP/fragment_shader_utils.h>
7//import <GLUP/fragment_ray_tracing.h>
8
9glup_flat glup_in vec4 color;
10glup_flat glup_in vec4 tex_coord;
11glup_flat glup_in vec3 center_world_space;
12glup_flat glup_in float radius;
13glup_flat glup_in glup_id primitive_id;
14
15void main(void) {
16 vec3 C = center_world_space;
17 float r = radius;
18
19 if(glupIsEnabled(GLUP_CLIPPING)) {
20 if(GLUP.clipping_mode == GLUP_CLIP_WHOLE_CELLS) {
21 if(dot(vec4(center_world_space,1.0),GLUP.world_clip_plane) < 0.0) {
22 discard;
23 }
24 } else if(GLUP.clipping_mode == GLUP_CLIP_STRADDLING_CELLS) {
25 float dist =
26 abs(dot(vec4(center_world_space,1.0),GLUP.world_clip_plane)) /
27 length(GLUP.world_clip_plane.xyz) ;
28 if(dist > r) {
29 discard;
30 }
31 }
32 }
33
34 Ray R = glup_primary_ray();
35 vec3 M,N;
36
37 if(
38 glupIsEnabled(GLUP_CLIPPING) &&
39 GLUP.clipping_mode == GLUP_CLIP_SLICE_CELLS
40 ) {
41 N = GLUP.world_clip_plane.xyz;
42 float w = GLUP.world_clip_plane.w;
43 float t = -(w + dot(N,R.O)) / dot(N,R.V);
44 M = R.O + t*R.V;
45 if(dot(M-C,M-C) > r*r) {
46 discard;
47 }
48 } else {
49 vec3 D = R.O-C;
50 float a = dot(R.V,R.V);
51 float b = 2.0*dot(R.V,D);
52 float c = dot(D,D)-r*r;
53 float delta = b*b-4.0*a*c;
54
55 if(delta < 0.0) {
56 discard;
57 }
58 float t = (-b-sqrt(delta))/(2.0*a);
59 M = R.O + t*R.V;
60 N = M-C;
61 }
62
63 if(
64 glupIsEnabled(GLUP_CLIPPING) &&
65 GLUP.clipping_mode == GLUP_CLIP_STANDARD
66 ) {
67 if(dot(vec4(M,1.0),GLUP.world_clip_plane) < 0.0) {
68 discard;
69 }
70 }
71
72 glup_update_depth(M);
73
74 if(glupIsEnabled(GLUP_PICKING)) {
75 glup_FragColor = glup_picking(int(primitive_id));
76 return;
77 }
78
79 vec4 result;
80 if(glupIsEnabled(GLUP_VERTEX_COLORS)) {
81 result = color;
82 } else {
83 result = GLUP.front_color;
84 }
85 if(glupIsEnabled(GLUP_TEXTURING)) {
86 result = glup_texturing(result, tex_coord);
87 }
88 if(glupIsEnabled(GLUP_LIGHTING)) {
89 N = normalize(GLUP.normal_matrix*N);
90 if(
91 glupIsEnabled(GLUP_CLIPPING) &&
92 GLUP.clipping_mode == GLUP_CLIP_SLICE_CELLS &&
93 N.z < 0.0
94 ) {
95 N = -N;
96 }
97 result = glup_lighting(result, N);
98 }
99 glup_FragColor = result;
100 glup_alpha_discard();
101}
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