Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
fragment_shader_utils.h
1
2
3#ifdef GLUP_ES_100
4// converts an integer into an ivec4. The components of
5// the ivec4 contains the 4 bytes of the integer.
6ivec4 int_to_ivec4(in int x) {
7 // TODO: we still have unsigned-signed conversion
8 // problems. Picking id in state should be unsigned.
9 if(x < 0) {
10 return ivec4(255,255,255,255);
11 }
12 int w = x;
13 int R = glup_mod(w, 256);
14 w /= 256;
15 int G = glup_mod(w, 256);
16 w /= 256;
17 int B = glup_mod(w, 256);
18 w /= 256;
19 int A = glup_mod(w, 256);
20 return ivec4(R,G,B,A);
21}
22#else
23ivec4 int_to_ivec4(in int x) {
24 return ivec4(
25 x & 255,
26 (x >> 8) & 255,
27 (x >> 16) & 255,
28 (x >> 24) & 255
29 );
30}
31#endif
32
33// adds two 32 bits integers V1 and V2 represented
34// as ivec4.
35ivec4 ivec4_add(in ivec4 V1, in ivec4 V2) {
36 int R = V1.r + V2.r;
37 int carry = R/256;
38 R -= carry*256;
39 int G = V1.g + V2.g + carry;
40 carry = G/256;
41 G -= carry*256;
42 int B = V1.b + V2.b + carry;
43 carry = B/256;
44 B -= carry*256;
45 int A = V1.a + V2.a + carry;
46 return ivec4(R,G,B,A);
47}
48
49// converts a 32 bit represented by an ivec4
50// into a color.
51vec4 ivec4_to_vec4(in ivec4 V) {
52 return vec4(
53 float(V.r)/255.0,
54 float(V.g)/255.0,
55 float(V.b)/255.0,
56 float(V.a)/255.0
57 );
58}
59
60// converts a 32 bit represented by an int
61// into a color.
62highp vec4 int_to_vec4(in int x) {
63 return ivec4_to_vec4(int_to_ivec4(x));
64}
65
66float min3(in float x, in float y, in float z) {
67 return min(min(x,y),z);
68}
69
70float min4(in float x, in float y, in float z, in float w) {
71 return min(min(x,y),min(z,w));
72}
73
74float edge_factor1(in float bary) {
75 float d = fwidth(bary);
76 float a = smoothstep(0.0, d*GLUP.mesh_width, bary);
77 return a;
78}
79
80float edge_factor3(in vec3 bary) {
81 vec3 d = fwidth(bary);
82 vec3 a = smoothstep(
83 vec3(0.0, 0.0, 0.0), d*GLUP.mesh_width, bary
84 );
85 return min3(a.x, a.y ,a.z);
86}
87
88float edge_factor4(in vec4 bary) {
89 vec4 d = fwidth(bary);
90 vec4 a = smoothstep(
91 vec4(0.0, 0.0, 0.0, 0.0), d*GLUP.mesh_width, bary
92 );
93 return min4(a.x, a.y, a.z, a.w);
94}
95
96vec4 glup_picking(in highp int primitive_id) {
97 vec4 result;
98 if(GLUP.picking_mode == GLUP_PICK_PRIMITIVE) {
99 ivec4 A4 = int_to_ivec4(primitive_id);
100 // TODO: this one will not work if GPU has lowprec fshaders
101 ivec4 B4 = int_to_ivec4(GLUP.base_picking_id);
102 result = ivec4_to_vec4(ivec4_add(A4,B4));
103 } else {
104 result = int_to_vec4(GLUP.picking_id);
105 }
106 return result;
107}
108
109vec4 glup_texturing(in vec4 color, in vec4 tex_coord) {
110 vec4 result = color;
111 vec4 tex_color;
112 if(GLUP.texture_type == GLUP_TEXTURE_1D) {
113 tex_color = glup_texture(
114 texture1Dsampler, tex_coord.xy
115 );
116 } else if(GLUP.texture_type == GLUP_TEXTURE_2D) {
117 tex_color = glup_texture(
118 texture2Dsampler, tex_coord.xy
119 );
120 }
121#ifdef GLUP_NO_TEXTURE_3D
122 else {
123 tex_color = vec4(1.0, 0.0, 0.0, 1.0);
124 }
125#else
126 else if(GLUP.texture_type == GLUP_TEXTURE_3D) {
127 tex_color = texture(
128 texture3Dsampler, tex_coord.xyz
129 );
130 }
131#endif
132 if(glupIsEnabled(GLUP_INDIRECT_TEXTURING)) {
133 tex_color = GLUP.texture_matrix * tex_color;
134 tex_color = glup_texture(texture1Dsampler, tex_color.xy);
135 }
136 if(GLUP.texture_mode == GLUP_TEXTURE_REPLACE) {
137 result = tex_color;
138 } else if(GLUP.texture_mode==GLUP_TEXTURE_MODULATE) {
139 result *= tex_color;
140 } else {
141 result += tex_color;
142 }
143 return result;
144}
145
146vec4 glup_lighting(in vec4 color, in vec3 normal) {
147 vec4 result = color;
148 float diff = dot(normal,GLUP.light_vector);
149 if(diff > 0.0) {
150 result.rgb = diff*result.rgb + vec3(0.2, 0.2, 0.2);
151 if(GLUP.specular > 0.0) {
152 float spec = dot(normal,GLUP.light_half_vector);
153 if(spec > 0.0) {
154 spec = pow(spec, 30.0);
155 result.rgb += GLUP.specular*spec*vec3(1.0, 1.0, 1.0);
156 }
157 }
158 } else {
159 result.rgb = vec3(0.2, 0.2, 0.2);
160 }
161 return result;
162}
163
164
165void glup_alpha_discard() {
166 if(glupIsEnabled(GLUP_ALPHA_DISCARD)) {
167 if(glup_FragColor.a < GLUP.alpha_threshold) {
168 discard;
169 }
170 }
171}
172
173void glup_primitive_filter(highp int primitive_id) {
174#ifdef GLUP_PRIMITIVE_FILTER
175 if(
176 texelFetch(
177 texturePrimitiveFiltersampler,
178 GLUP.base_picking_id + primitive_id
179 ).r == 0u
180 ) {
181 discard;
182 }
183#endif
184}
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