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 <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
8#ifndef GLUP_NO_GL_CLIPPING
9in float gl_ClipDistance[];
10#endif
11
12#ifdef GL_ARB_conservative_depth
13layout (depth_less) out float gl_FragDepth;
14#endif
15
16in VertexData {
17 vec4 color;
18 vec4 tex_coord;
19 float depth_radius;
20} FragmentIn;
21
22void main() {
23
24#ifdef GLUP_GL_ES
25#ifndef GLUP_NO_GL_CLIPPING
26 if(glupIsEnabled(GLUP_CLIPPING) && (gl_ClipDistance[0] < 0.0)) {
27 discard;
28 }
29#endif
30#endif
31
32 vec2 V = 2.0*(gl_PointCoord - vec2(0.5, 0.5));
33 float one_minus_r2 = 1.0 - dot(V,V);
34 if(one_minus_r2 < 0.0) {
35 discard;
36 }
37
38 vec3 N = vec3(V.x, -V.y, sqrt(one_minus_r2));
39
40 glup_FragDepth = gl_FragCoord.z - FragmentIn.depth_radius * N.z;
41
42 if(glupIsEnabled(GLUP_PRIMITIVE_FILTERING)) {
43 glup_primitive_filter(gl_PrimitiveID);
44 }
45
46 if(glupIsEnabled(GLUP_PICKING)) {
47 glup_FragColor = glup_picking(gl_PrimitiveID);
48 return;
49 }
50
51 vec4 result;
52 if(glupIsEnabled(GLUP_VERTEX_COLORS)) {
53 result = FragmentIn.color;
54 } else {
55 result = GLUP.front_color;
56 }
57 if(glupIsEnabled(GLUP_TEXTURING)) {
58 result = glup_texturing(result, FragmentIn.tex_coord);
59 }
60 if(glupIsEnabled(GLUP_LIGHTING)) {
61 result = glup_lighting(result, N);
62 }
63 glup_FragColor = result;
64 glup_alpha_discard();
65}
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