Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
spheres_vertex_shader.h
1//import <GLUP/current_profile/vertex_shader_preamble.h>
2//import <GLUPES/vertex_shader_state.h>
3//import <GLUP/stdglup.h>
4//import <GLUP/current_profile/toggles.h>
5//import <GLUP/current_profile/primitive.h>
6
7glup_in vec4 vertex_in;
8glup_in vec4 color_in;
9glup_in vec4 tex_coord_in;
10glup_in highp float vertex_id_in;
11
12glup_flat glup_out vec4 color;
13glup_flat glup_out vec4 tex_coord;
14glup_flat glup_out vec3 center_world_space;
15glup_flat glup_out float radius;
16glup_flat glup_out glup_id primitive_id;
17
18vec4 row0(in mat4 M) {
19 return vec4(M[0][0], M[1][0], M[2][0], M[3][0]);
20}
21
22vec4 row1(in mat4 M) {
23 return vec4(M[0][1], M[1][1], M[2][1], M[3][1]);
24}
25
26vec4 row3(in mat4 M) {
27 return vec4(M[0][3], M[1][3], M[2][3], M[3][3]);
28}
29
30// Reference:
31// http://reality.cs.ucl.ac.uk/projects/quadrics/pbg06.pdf
32// Ported from Dmitry / Sam code
33
34void main(void) {
35
36 if(glupIsEnabled(GLUP_PICKING)) {
37#ifdef GLUP_ES_100
38 primitive_id = float(int(vertex_id_in + 0.5)) + 0.5;
39#else
40 primitive_id = int(vertex_id_in + 0.5);
41#endif
42 }
43
44 if(glupIsEnabled(GLUP_VERTEX_COLORS)) {
45 color = color_in;
46 }
47
48 if(glupIsEnabled(GLUP_TEXTURING)) {
49 if(glupIsEnabled(GLUP_INDIRECT_TEXTURING)) {
50 tex_coord = tex_coord_in;
51 } else {
52 tex_coord = GLUP_VS.texture_matrix * tex_coord_in;
53 }
54 }
55
56 float R = vertex_in.w;
57 gl_Position =
58 GLUP_VS.modelviewprojection_matrix*vec4(vertex_in.xyz,1.0);
59
60 // TODO: optimize, directly compute r1,r2,r4
61 mat4 T = mat4(
62 1.0, 0.0, 0.0, 0.0,
63 0.0, 1.0, 0.0, 0.0,
64 0.0, 0.0, 1.0, 0.0,
65 vertex_in.x/R, vertex_in.y/R, vertex_in.z/R, 1.0/R
66 );
67
68 mat4 PMT = GLUP_VS.modelviewprojection_matrix * T;
69 vec4 r1 = row0(PMT);
70 vec4 r2 = row1(PMT);
71 vec4 r4 = row3(PMT);
72
73 float r1Dr4T = dot(r1.xyz,r4.xyz)-r1.w*r4.w;
74 float r1Dr1T = dot(r1.xyz,r1.xyz)-r1.w*r1.w;
75 float r4Dr4T = dot(r4.xyz,r4.xyz)-r4.w*r4.w;
76 float r2Dr2T = dot(r2.xyz,r2.xyz)-r2.w*r2.w;
77 float r2Dr4T = dot(r2.xyz,r4.xyz)-r2.w*r4.w;
78
79 float discriminant_x = r1Dr4T*r1Dr4T-r4Dr4T*r1Dr1T;
80 float discriminant_y = r2Dr4T*r2Dr4T-r4Dr4T*r2Dr2T;
81 float screen = max(GLUP_VS.viewport[2], GLUP_VS.viewport[3]);
82 gl_PointSize = sqrt(max(discriminant_x, discriminant_y)) * screen/(-r4Dr4T);
83
84 center_world_space = vertex_in.xyz;
85 radius = vertex_in.w;
86}
Matrix< 4, Numeric::float64 > mat4
Represents a 4x4 matrix.
Definition geometry.h:153
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