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 <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
12in VertexData {
13 vec4 vertex_clip_space;
14 vec4 color;
15 vec4 tex_coord;
16#if GLUP_PRIMITIVE_DIMENSION==2
17 vec3 normal;
18#endif
19 vec4 mesh_tex_coord;
20} FragmentIn;
21
22
23bool is_triangle(in vec4 mesh_tex_coord) {
24 if(
25 !glupIsEnabled(GLUP_CLIPPING) ||
26 GLUP.clipping_mode != GLUP_CLIP_SLICE_CELLS
27 ) {
28 switch(glup_primitive) {
29 case GLUP_TRIANGLES:
30 return true;
31 case GLUP_QUADS:
32 return false;
33 case GLUP_TETRAHEDRA:
34 return true;
35 case GLUP_HEXAHEDRA:
36 return false;
37 }
38 }
39 return (
40 (mesh_tex_coord.x +
41 mesh_tex_coord.y +
42 mesh_tex_coord.z +
43 mesh_tex_coord.w) < 1.5
44 );
45}
46
47float edge_factor(in vec4 mesh_tex_coord) {
48 if(is_triangle(mesh_tex_coord)) {
49 return edge_factor3(mesh_tex_coord.xyz);
50 } else {
51 return edge_factor4(mesh_tex_coord);
52 }
53}
54
55vec4 glup_draw_mesh(in vec4 color, in vec4 mesh_tex_coord) {
56 return mix(
57 GLUP.mesh_color, color, edge_factor(mesh_tex_coord)
58 );
59}
60
61void main() {
62
63#ifdef GLUP_GL_ES
64#ifndef GLUP_NO_GL_CLIPPING
65 if(glupIsEnabled(GLUP_CLIPPING) && (gl_ClipDistance[0] < 0.0)) {
66 discard;
67 }
68#endif
69#endif
70
71 if(glupIsEnabled(GLUP_PRIMITIVE_FILTERING)) {
72 glup_primitive_filter(gl_PrimitiveID);
73 }
74
75 if(glupIsEnabled(GLUP_PICKING)) {
76 glup_FragColor = glup_picking(gl_PrimitiveID);
77 return;
78 }
79
80 vec4 result;
81 if(glupIsEnabled(GLUP_VERTEX_COLORS)) {
82 result = FragmentIn.color;
83 } else {
84 result = gl_FrontFacing ? GLUP.front_color : GLUP.back_color;
85 }
86
87 if(glupIsEnabled(GLUP_TEXTURING) && !glupIsEnabled(GLUP_NORMAL_MAPPING)) {
88 result = glup_texturing(result, FragmentIn.tex_coord);
89 }
90 if(glupIsEnabled(GLUP_LIGHTING)) {
91 vec3 N;
92 if(
93 glupIsEnabled(GLUP_TEXTURING) &&
94 glupIsEnabled(GLUP_NORMAL_MAPPING)
95 ){
96 N = glup_texturing(vec4(1.0,1.0,1.0,1.0), FragmentIn.tex_coord).xyz;
97 N = N-vec3(0.5,0.5,0.5);
98 N = normalize(GLUP.normal_matrix*N);
99 if(!gl_FrontFacing) {
100 N = -N;
101 }
102 } else {
103#if GLUP_PRIMITIVE_DIMENSION==2
104 if(glupIsEnabled(GLUP_VERTEX_NORMALS)) {
105 N = normalize(FragmentIn.normal);
106 if(!gl_FrontFacing) {
107 N = -N;
108 }
109 } else
110#endif
111 {
112 vec3 U = dFdx(FragmentIn.vertex_clip_space.xyz);
113 vec3 V = dFdy(FragmentIn.vertex_clip_space.xyz);
114
115 mat3 M = transpose(
116 mat3(
117 GLUP.projection_matrix[0].xyz,
118 GLUP.projection_matrix[1].xyz,
119 GLUP.projection_matrix[2].xyz
120 )
121 );
122
123// I do not know why it is reversed, to be checked
124// (maybe it is just my test program that does not
125// have the same transform orientation, but then I
126// do not understand why it gives the same result as
127// the desktop version with GLUPES2...)
128#ifdef GLUP_GL_ES
129 N = normalize(M*cross(U,V));
130#else
131 N = -normalize(M*cross(U,V));
132#endif
133 }
134 }
135 result = glup_lighting(result, N);
136 }
137 if(glupIsEnabled(GLUP_DRAW_MESH)) {
138 result = glup_draw_mesh(result, FragmentIn.mesh_tex_coord);
139 }
140 glup_FragColor = result;
141 glup_alpha_discard();
142}
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
Matrix< 3, Numeric::float64 > mat3
Represents a 3x3 matrix.
Definition geometry.h:147