Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
points_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 <GLUPES/fragment_shader_utils.h>
7
8glup_in vec4 color;
9glup_in vec4 tex_coord;
10glup_in float clip_dist;
11glup_flat glup_in float depth_radius;
12glup_flat glup_in glup_id primitive_id;
13
14void main() {
15
16 if(glupIsEnabled(GLUP_CLIPPING) && (clip_dist < 0.0)) {
17 discard;
18 }
19
20 vec2 V = 2.0*(gl_PointCoord - vec2(0.5, 0.5));
21 float one_minus_r2 = 1.0 - dot(V,V);
22 if(one_minus_r2 < 0.0) {
23 discard;
24 }
25
26 vec3 N = vec3(V.x, -V.y, sqrt(one_minus_r2));
27 glup_FragDepth = gl_FragCoord.z - depth_radius * N.z;
28
29 if(glupIsEnabled(GLUP_PICKING)) {
30 glup_FragColor = glup_picking(int(primitive_id));
31 return;
32 }
33
34 vec4 result;
35 if(glupIsEnabled(GLUP_VERTEX_COLORS)) {
36 result = color;
37 } else {
38 result = GLUP.front_color;
39 }
40 if(glupIsEnabled(GLUP_TEXTURING)) {
41 result = glup_texturing(result, tex_coord);
42 }
43 if(glupIsEnabled(GLUP_LIGHTING)) {
44 result = glup_lighting(result, N);
45 }
46 glup_FragColor = result;
47 glup_alpha_discard();
48}
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
vecng< 2, Numeric::float64 > vec2
Represents points and vectors in 2d.
Definition geometry.h:59