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 <GLUPGLSL/state.h>
3//import <GLUP/stdglup.h>
4//import <GLUP/current_profile/toggles.h>
5//import <GLUP/current_profile/primitive.h>
6
7in vec4 vertex_in;
8in vec4 color_in;
9in vec4 tex_coord_in;
10
11out VertexData {
12 vec4 color;
13 vec4 tex_coord;
14 vec3 center_world_space;
15 float radius;
16} VertexOut;
17
18// Reference:
19// http://reality.cs.ucl.ac.uk/projects/quadrics/pbg06.pdf
20// Ported from Dmitry / Sam code
21
22vec4 row(in mat4 M, in int i) {
23 return vec4(M[0][i], M[1][i], M[2][i], M[3][i]);
24}
25
26void main(void) {
27
28 if(glupIsEnabled(GLUP_VERTEX_COLORS)) {
29 VertexOut.color = color_in;
30 }
31
32 if(glupIsEnabled(GLUP_TEXTURING)) {
33 if(glupIsEnabled(GLUP_INDIRECT_TEXTURING)) {
34 VertexOut.tex_coord = tex_coord_in;
35 } else {
36 VertexOut.tex_coord = GLUP.texture_matrix * tex_coord_in;
37 }
38 }
39
40 float R = vertex_in.w;
41 gl_Position =
42 GLUP.modelviewprojection_matrix*vec4(vertex_in.xyz,1.0);
43
44 // TODO: optimize: directly compute r1,r2,r4
45 mat4 T = mat4(
46 1.0, 0.0, 0.0, 0.0,
47 0.0, 1.0, 0.0, 0.0,
48 0.0, 0.0, 1.0, 0.0,
49 vertex_in.x/R, vertex_in.y/R, vertex_in.z/R, 1.0/R
50 );
51
52 mat4 PMT = GLUP.modelviewprojection_matrix * T;
53 vec4 r1 = row(PMT,0);
54 vec4 r2 = row(PMT,1);
55 vec4 r4 = row(PMT,3);
56
57 float r1Dr4T = dot(r1.xyz,r4.xyz)-r1.w*r4.w;
58 float r1Dr1T = dot(r1.xyz,r1.xyz)-r1.w*r1.w;
59 float r4Dr4T = dot(r4.xyz,r4.xyz)-r4.w*r4.w;
60 float r2Dr2T = dot(r2.xyz,r2.xyz)-r2.w*r2.w;
61 float r2Dr4T = dot(r2.xyz,r4.xyz)-r2.w*r4.w;
62
63 float discriminant_x = r1Dr4T*r1Dr4T-r4Dr4T*r1Dr1T;
64 float discriminant_y = r2Dr4T*r2Dr4T-r4Dr4T*r2Dr2T;
65 float screen = max(GLUP.viewport[2], GLUP.viewport[3]);
66
67 gl_PointSize = sqrt(max(discriminant_x,discriminant_y)) * screen/(-r4Dr4T);
68
69 VertexOut.center_world_space = vertex_in.xyz;
70 VertexOut.radius = R;
71}
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