Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
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 vec3 vertex_view_space;
9glup_in float clip_dist;
10glup_in vec4 color;
11glup_in vec4 tex_coord;
12glup_in vec4 mesh_tex_coord;
13glup_flat glup_in glup_id primitive_id;
14
15#if GLUP_PRIMITIVE_DIMENSION==2
16glup_in vec3 normal;
17#endif
18
19
20void main() {
21
22 if(glupIsEnabled(GLUP_CLIPPING)) {
23 if(glup_primitive_dimension == 2) {
24 if(clip_dist < 0.0) {
25 discard;
26 }
27 } else if(glup_primitive_dimension == 3) {
28 if(
29 clip_dist < 0.0 &&
30 GLUP.clipping_mode == GLUP_CLIP_STANDARD
31 ) {
32 discard;
33 }
34 }
35 }
36
37 vec3 N;
38 if(glupIsEnabled(GLUP_LIGHTING)) {
39 if(
40 glupIsEnabled(GLUP_TEXTURING) &&
41 glupIsEnabled(GLUP_NORMAL_MAPPING)
42 ) {
43 N = glup_texturing(vec4(1.0,1.0,1.0,1.0), tex_coord).xyz;
44 N = N-vec3(0.5,0.5,0.5);
45 N = normalize(GLUP.normal_matrix*N);
46 if(!gl_FrontFacing) {
47 N = -N;
48 }
49 } else {
50#if GLUP_PRIMITIVE_DIMENSION==2
51 if(glupIsEnabled(GLUP_VERTEX_NORMALS)) {
52 N = normalize(normal);
53 if(!gl_FrontFacing) {
54 N = -N;
55 }
56 } else
57#endif
58 {
59 // Note: we still compute view space vertex
60 // in vertex shader, because we seemingly do
61 // not have sufficient precision to do the same
62 // trick as in GLUP_GLSL (i.e. going back to
63 // view space from clip space using projection
64 // matrix).
65 vec3 U = dFdx(vertex_view_space);
66 vec3 V = dFdy(vertex_view_space);
67 N = normalize(cross(U,V));
68 }
69 }
70 }
71
72 glup_FragColor = glup_shading(
73 color, tex_coord, N, int(primitive_id), mesh_tex_coord
74 );
75 glup_alpha_discard();
76}
vec3 cross(vec3 v1, vec3 v2)
Computes the cross product between two vectors.
vec3 normalize(vec3 v)
Computes a normalized vector.
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