]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - shader_glsl.h
command line option -readonly to turn off all writing
[xonotic/darkplaces.git] / shader_glsl.h
1 "// ambient+diffuse+specular+normalmap+attenuation+cubemap+fog shader\n"
2 "// written by Forest 'LordHavoc' Hale\n"
3 "// shadowmapping enhancements by Lee 'eihrul' Salzman\n"
4 "\n"
5 "#ifdef USECELSHADING\n"
6 "# define SHADEDIFFUSE myhalf diffuse = cast_myhalf(min(max(float(dot(surfacenormal, lightnormal)) * 2.0, 0.0), 1.0));\n"
7 "# ifdef USEEXACTSPECULARMATH\n"
8 "#  define SHADESPECULAR(specpow) myhalf specular = pow(cast_myhalf(max(float(dot(reflect(lightnormal, surfacenormal), eyenormal))*-1.0, 0.0)), 1.0 + specpow);specular = max(0.0, specular * 10.0 - 9.0);\n"
9 "# else\n"
10 "#  define SHADESPECULAR(specpow) myhalf3 specularnormal = normalize(lightnormal + eyenormal);myhalf specular = pow(cast_myhalf(max(float(dot(surfacenormal, specularnormal)), 0.0)), 1.0 + specpow);specular = max(0.0, specular * 10.0 - 9.0);\n"
11 "# endif\n"
12 "#else\n"
13 "# define SHADEDIFFUSE myhalf diffuse = cast_myhalf(max(float(dot(surfacenormal, lightnormal)), 0.0));\n"
14 "# ifdef USEEXACTSPECULARMATH\n"
15 "#  define SHADESPECULAR(specpow) myhalf specular = pow(cast_myhalf(max(float(dot(reflect(lightnormal, surfacenormal), eyenormal))*-1.0, 0.0)), 1.0 + specpow);\n"
16 "# else\n"
17 "#  define SHADESPECULAR(specpow) myhalf3 specularnormal = normalize(lightnormal + eyenormal);myhalf specular = pow(cast_myhalf(max(float(dot(surfacenormal, specularnormal)), 0.0)), 1.0 + specpow);\n"
18 "# endif\n"
19 "#endif\n"
20 "\n"
21 "#ifdef GLSL130\n"
22 "precision highp float;\n"
23 "# ifdef VERTEX_SHADER\n"
24 "#  define dp_varying out\n"
25 "#  define dp_attribute in\n"
26 "# endif\n"
27 "# ifdef FRAGMENT_SHADER\n"
28 "out vec4 dp_FragColor;\n"
29 "#  define dp_varying in\n"
30 "#  define dp_attribute in\n"
31 "# endif\n"
32 "# define dp_offsetmapping_dFdx dFdx\n"
33 "# define dp_offsetmapping_dFdy dFdy\n"
34 "# define dp_textureGrad textureGrad\n"
35 "# define dp_textureOffset(a,b,c,d) textureOffset(a,b,ivec2(c,d))\n"
36 "# define dp_texture2D texture\n"
37 "# define dp_texture3D texture\n"
38 "# define dp_textureCube texture\n"
39 "# define dp_shadow2D(a,b) float(texture(a,b))\n"
40 "#else\n"
41 "# ifdef FRAGMENT_SHADER\n"
42 "#  define dp_FragColor gl_FragColor\n"
43 "# endif\n"
44 "# define dp_varying varying\n"
45 "# define dp_attribute attribute\n"
46 "# define dp_offsetmapping_dFdx(a) vec2(0.0, 0.0)\n"
47 "# define dp_offsetmapping_dFdy(a) vec2(0.0, 0.0)\n"
48 "# define dp_textureGrad(a,b,c,d) texture2D(a,b)\n"
49 "# define dp_textureOffset(a,b,c,d) texture2DOffset(a,b,ivec2(c,d))\n"
50 "# define dp_texture2D texture2D\n"
51 "# define dp_texture3D texture3D\n"
52 "# define dp_textureCube textureCube\n"
53 "# define dp_shadow2D(a,b) float(shadow2D(a,b))\n"
54 "#endif\n"
55 "\n"
56 "// GL ES and GLSL130 shaders use precision modifiers, standard GL does not\n"
57 "// in GLSL130 we don't use them though because of syntax differences (can't use precision with inout)\n"
58 "#ifndef GL_ES\n"
59 "#define lowp\n"
60 "#define mediump\n"
61 "#define highp\n"
62 "#endif\n"
63 "\n"
64 "#ifdef USEDEPTHRGB\n"
65 "       // for 565 RGB we'd need to use different multipliers\n"
66 "#define decodedepthmacro(d) dot((d).rgb, vec3(1.0, 255.0 / 65536.0, 255.0 / 16777215.0))\n"
67 "#define encodedepthmacro(d) (vec4(d, d*256.0, d*65536.0, 0.0) - floor(vec4(d, d*256.0, d*65536.0, 0.0)))\n"
68 "#endif\n"
69 "\n"
70 "#ifdef VERTEX_SHADER\n"
71 "dp_attribute vec4 Attrib_Position;  // vertex\n"
72 "dp_attribute vec4 Attrib_Color;     // color\n"
73 "dp_attribute vec4 Attrib_TexCoord0; // material texcoords\n"
74 "dp_attribute vec3 Attrib_TexCoord1; // svector\n"
75 "dp_attribute vec3 Attrib_TexCoord2; // tvector\n"
76 "dp_attribute vec3 Attrib_TexCoord3; // normal\n"
77 "dp_attribute vec4 Attrib_TexCoord4; // lightmap texcoords\n"
78 "#endif\n"
79 "dp_varying mediump vec4 VertexColor;\n"
80 "\n"
81 "#if defined(USEFOGINSIDE) || defined(USEFOGOUTSIDE) || defined(USEFOGHEIGHTTEXTURE)\n"
82 "# define USEFOG\n"
83 "#endif\n"
84 "#if defined(MODE_LIGHTMAP) || defined(MODE_LIGHTDIRECTIONMAP_MODELSPACE) || defined(MODE_LIGHTDIRECTIONMAP_TANGENTSPACE) || defined(MODE_LIGHTDIRECTIONMAP_FORCED_LIGHTMAP)\n"
85 "# define USELIGHTMAP\n"
86 "#endif\n"
87 "#if defined(USESPECULAR) || defined(USEOFFSETMAPPING) || defined(USEREFLECTCUBE) || defined(MODE_FAKELIGHT) || defined(USEFOG)\n"
88 "# define USEEYEVECTOR\n"
89 "#endif\n"
90 "\n"
91 "#ifdef USESHADOWMAP2D\n"
92 "# ifdef GL_EXT_gpu_shader4\n"
93 "#   extension GL_EXT_gpu_shader4 : enable\n"
94 "# endif\n"
95 "# ifdef GL_ARB_texture_gather\n"
96 "#   extension GL_ARB_texture_gather : enable\n"
97 "# else\n"
98 "#   ifdef GL_AMD_texture_texture4\n"
99 "#     extension GL_AMD_texture_texture4 : enable\n"
100 "#   endif\n"
101 "# endif\n"
102 "#endif\n"
103 "\n"
104 "//#ifdef USESHADOWSAMPLER\n"
105 "//# extension GL_ARB_shadow : enable\n"
106 "//#endif\n"
107 "\n"
108 "//#ifdef __GLSL_CG_DATA_TYPES\n"
109 "//# define myhalf half\n"
110 "//# define myhalf2 half2\n"
111 "//# define myhalf3 half3\n"
112 "//# define myhalf4 half4\n"
113 "//# define cast_myhalf half\n"
114 "//# define cast_myhalf2 half2\n"
115 "//# define cast_myhalf3 half3\n"
116 "//# define cast_myhalf4 half4\n"
117 "//#else\n"
118 "# define myhalf mediump float\n"
119 "# define myhalf2 mediump vec2\n"
120 "# define myhalf3 mediump vec3\n"
121 "# define myhalf4 mediump vec4\n"
122 "# define cast_myhalf float\n"
123 "# define cast_myhalf2 vec2\n"
124 "# define cast_myhalf3 vec3\n"
125 "# define cast_myhalf4 vec4\n"
126 "//#endif\n"
127 "\n"
128 "#ifdef VERTEX_SHADER\n"
129 "uniform highp mat4 ModelViewProjectionMatrix;\n"
130 "#endif\n"
131 "\n"
132 "#ifdef VERTEX_SHADER\n"
133 "#ifdef USETRIPPY\n"
134 "// LordHavoc: based on shader code linked at: http://www.youtube.com/watch?v=JpksyojwqzE\n"
135 "// tweaked scale\n"
136 "uniform highp float ClientTime;\n"
137 "vec4 TrippyVertex(vec4 position)\n"
138 "{\n"
139 "       float worldTime = ClientTime;\n"
140 "       // tweaked for Quake\n"
141 "       worldTime *= 10.0;\n"
142 "       position *= 0.125;\n"
143 "       //~tweaked for Quake\n"
144 "       float distanceSquared = (position.x * position.x + position.z * position.z);\n"
145 "       position.y += 5.0*sin(distanceSquared*sin(worldTime/143.0)/1000.0);\n"
146 "       float y = position.y;\n"
147 "       float x = position.x;\n"
148 "       float om = sin(distanceSquared*sin(worldTime/256.0)/5000.0) * sin(worldTime/200.0);\n"
149 "       position.y = x*sin(om)+y*cos(om);\n"
150 "       position.x = x*cos(om)-y*sin(om);\n"
151 "       return position;\n"
152 "}\n"
153 "#endif\n"
154 "#endif\n"
155 "\n"
156 "#ifdef MODE_DEPTH_OR_SHADOW\n"
157 "dp_varying highp float Depth;\n"
158 "#ifdef VERTEX_SHADER\n"
159 "void main(void)\n"
160 "{\n"
161 "       gl_Position = ModelViewProjectionMatrix * Attrib_Position;\n"
162 "#ifdef USETRIPPY\n"
163 "       gl_Position = TrippyVertex(gl_Position);\n"
164 "#endif\n"
165 "       Depth = gl_Position.z;\n"
166 "}\n"
167 "#endif\n"
168 "\n"
169 "#ifdef FRAGMENT_SHADER\n"
170 "void main(void)\n"
171 "{\n"
172 "#ifdef USEDEPTHRGB\n"
173 "       dp_FragColor = encodedepthmacro(Depth);\n"
174 "#else\n"
175 "       dp_FragColor = vec4(1.0,1.0,1.0,1.0);\n"
176 "#endif\n"
177 "}\n"
178 "#endif\n"
179 "#else // !MODE_DEPTH_ORSHADOW\n"
180 "\n"
181 "\n"
182 "\n"
183 "\n"
184 "#ifdef MODE_SHOWDEPTH\n"
185 "#ifdef VERTEX_SHADER\n"
186 "void main(void)\n"
187 "{\n"
188 "       gl_Position = ModelViewProjectionMatrix * Attrib_Position;\n"
189 "       VertexColor = vec4(gl_Position.z, gl_Position.z, gl_Position.z, 1.0);\n"
190 "#ifdef USETRIPPY\n"
191 "       gl_Position = TrippyVertex(gl_Position);\n"
192 "#endif\n"
193 "}\n"
194 "#endif\n"
195 "\n"
196 "#ifdef FRAGMENT_SHADER\n"
197 "void main(void)\n"
198 "{\n"
199 "       dp_FragColor = VertexColor;\n"
200 "}\n"
201 "#endif\n"
202 "#else // !MODE_SHOWDEPTH\n"
203 "\n"
204 "\n"
205 "\n"
206 "\n"
207 "#ifdef MODE_POSTPROCESS\n"
208 "dp_varying mediump vec2 TexCoord1;\n"
209 "dp_varying mediump vec2 TexCoord2;\n"
210 "\n"
211 "#ifdef VERTEX_SHADER\n"
212 "void main(void)\n"
213 "{\n"
214 "       gl_Position = ModelViewProjectionMatrix * Attrib_Position;\n"
215 "       TexCoord1 = Attrib_TexCoord0.xy;\n"
216 "#ifdef USEBLOOM\n"
217 "       TexCoord2 = Attrib_TexCoord4.xy;\n"
218 "#endif\n"
219 "}\n"
220 "#endif\n"
221 "\n"
222 "#ifdef FRAGMENT_SHADER\n"
223 "uniform sampler2D Texture_First;\n"
224 "#ifdef USEBLOOM\n"
225 "uniform sampler2D Texture_Second;\n"
226 "uniform mediump vec4 BloomColorSubtract;\n"
227 "#endif\n"
228 "#ifdef USEGAMMARAMPS\n"
229 "uniform sampler2D Texture_GammaRamps;\n"
230 "#endif\n"
231 "#ifdef USESATURATION\n"
232 "uniform mediump float Saturation;\n"
233 "#endif\n"
234 "#ifdef USEVIEWTINT\n"
235 "uniform mediump vec4 ViewTintColor;\n"
236 "#endif\n"
237 "//uncomment these if you want to use them:\n"
238 "uniform mediump vec4 UserVec1;\n"
239 "uniform mediump vec4 UserVec2;\n"
240 "// uniform mediump vec4 UserVec3;\n"
241 "// uniform mediump vec4 UserVec4;\n"
242 "// uniform highp float ClientTime;\n"
243 "uniform mediump vec2 PixelSize;\n"
244 "void main(void)\n"
245 "{\n"
246 "       dp_FragColor = dp_texture2D(Texture_First, TexCoord1);\n"
247 "#ifdef USEBLOOM\n"
248 "       dp_FragColor += max(vec4(0,0,0,0), dp_texture2D(Texture_Second, TexCoord2) - BloomColorSubtract);\n"
249 "#endif\n"
250 "#ifdef USEVIEWTINT\n"
251 "       dp_FragColor = mix(dp_FragColor, ViewTintColor, ViewTintColor.a);\n"
252 "#endif\n"
253 "\n"
254 "#ifdef USEPOSTPROCESSING\n"
255 "// do r_glsl_dumpshader, edit glsl/default.glsl, and replace this by your own postprocessing if you want\n"
256 "// this code does a blur with the radius specified in the first component of r_glsl_postprocess_uservec1 and blends it using the second component\n"
257 "       float sobel = 1.0;\n"
258 "       // vec2 ts = textureSize(Texture_First, 0);\n"
259 "       // vec2 px = vec2(1/ts.x, 1/ts.y);\n"
260 "       vec2 px = PixelSize;\n"
261 "       vec3 x1 = dp_texture2D(Texture_First, TexCoord1 + vec2(-px.x, px.y)).rgb;\n"
262 "       vec3 x2 = dp_texture2D(Texture_First, TexCoord1 + vec2(-px.x,  0.0)).rgb;\n"
263 "       vec3 x3 = dp_texture2D(Texture_First, TexCoord1 + vec2(-px.x,-px.y)).rgb;\n"
264 "       vec3 x4 = dp_texture2D(Texture_First, TexCoord1 + vec2( px.x, px.y)).rgb;\n"
265 "       vec3 x5 = dp_texture2D(Texture_First, TexCoord1 + vec2( px.x,  0.0)).rgb;\n"
266 "       vec3 x6 = dp_texture2D(Texture_First, TexCoord1 + vec2( px.x,-px.y)).rgb;\n"
267 "       vec3 y1 = dp_texture2D(Texture_First, TexCoord1 + vec2( px.x,-px.y)).rgb;\n"
268 "       vec3 y2 = dp_texture2D(Texture_First, TexCoord1 + vec2(  0.0,-px.y)).rgb;\n"
269 "       vec3 y3 = dp_texture2D(Texture_First, TexCoord1 + vec2(-px.x,-px.y)).rgb;\n"
270 "       vec3 y4 = dp_texture2D(Texture_First, TexCoord1 + vec2( px.x, px.y)).rgb;\n"
271 "       vec3 y5 = dp_texture2D(Texture_First, TexCoord1 + vec2(  0.0, px.y)).rgb;\n"
272 "       vec3 y6 = dp_texture2D(Texture_First, TexCoord1 + vec2(-px.x, px.y)).rgb;\n"
273 "       float px1 = -1.0 * dot(vec3(0.3, 0.59, 0.11), x1);\n"
274 "       float px2 = -2.0 * dot(vec3(0.3, 0.59, 0.11), x2);\n"
275 "       float px3 = -1.0 * dot(vec3(0.3, 0.59, 0.11), x3);\n"
276 "       float px4 =  1.0 * dot(vec3(0.3, 0.59, 0.11), x4);\n"
277 "       float px5 =  2.0 * dot(vec3(0.3, 0.59, 0.11), x5);\n"
278 "       float px6 =  1.0 * dot(vec3(0.3, 0.59, 0.11), x6);\n"
279 "       float py1 = -1.0 * dot(vec3(0.3, 0.59, 0.11), y1);\n"
280 "       float py2 = -2.0 * dot(vec3(0.3, 0.59, 0.11), y2);\n"
281 "       float py3 = -1.0 * dot(vec3(0.3, 0.59, 0.11), y3);\n"
282 "       float py4 =  1.0 * dot(vec3(0.3, 0.59, 0.11), y4);\n"
283 "       float py5 =  2.0 * dot(vec3(0.3, 0.59, 0.11), y5);\n"
284 "       float py6 =  1.0 * dot(vec3(0.3, 0.59, 0.11), y6);\n"
285 "       sobel = 0.25 * abs(px1 + px2 + px3 + px4 + px5 + px6) + 0.25 * abs(py1 + py2 + py3 + py4 + py5 + py6);\n"
286 "       dp_FragColor += dp_texture2D(Texture_First, TexCoord1 + PixelSize*UserVec1.x*vec2(-0.987688, -0.156434)) * UserVec1.y;\n"
287 "       dp_FragColor += dp_texture2D(Texture_First, TexCoord1 + PixelSize*UserVec1.x*vec2(-0.156434, -0.891007)) * UserVec1.y;\n"
288 "       dp_FragColor += dp_texture2D(Texture_First, TexCoord1 + PixelSize*UserVec1.x*vec2( 0.891007, -0.453990)) * UserVec1.y;\n"
289 "       dp_FragColor += dp_texture2D(Texture_First, TexCoord1 + PixelSize*UserVec1.x*vec2( 0.707107,  0.707107)) * UserVec1.y;\n"
290 "       dp_FragColor += dp_texture2D(Texture_First, TexCoord1 + PixelSize*UserVec1.x*vec2(-0.453990,  0.891007)) * UserVec1.y;\n"
291 "       dp_FragColor /= (1.0 + 5.0 * UserVec1.y);\n"
292 "       dp_FragColor.rgb = dp_FragColor.rgb * (1.0 + UserVec2.x) + vec3(max(0.0, sobel - UserVec2.z))*UserVec2.y;\n"
293 "#endif\n"
294 "\n"
295 "#ifdef USESATURATION\n"
296 "       //apply saturation BEFORE gamma ramps, so v_glslgamma value does not matter\n"
297 "       float y = dot(dp_FragColor.rgb, vec3(0.299, 0.587, 0.114));\n"
298 "       // 'vampire sight' effect, wheres red is compensated\n"
299 "       #ifdef SATURATION_REDCOMPENSATE\n"
300 "               float rboost = max(0.0, (dp_FragColor.r - max(dp_FragColor.g, dp_FragColor.b))*(1.0 - Saturation));\n"
301 "               dp_FragColor.rgb = mix(vec3(y), dp_FragColor.rgb, Saturation);\n"
302 "               dp_FragColor.r += rboost;\n"
303 "       #else\n"
304 "               // normal desaturation\n"
305 "               //dp_FragColor = vec3(y) + (dp_FragColor.rgb - vec3(y)) * Saturation;\n"
306 "               dp_FragColor.rgb = mix(vec3(y), dp_FragColor.rgb, Saturation);\n"
307 "       #endif\n"
308 "#endif\n"
309 "\n"
310 "#ifdef USEGAMMARAMPS\n"
311 "       dp_FragColor.r = dp_texture2D(Texture_GammaRamps, vec2(dp_FragColor.r, 0)).r;\n"
312 "       dp_FragColor.g = dp_texture2D(Texture_GammaRamps, vec2(dp_FragColor.g, 0)).g;\n"
313 "       dp_FragColor.b = dp_texture2D(Texture_GammaRamps, vec2(dp_FragColor.b, 0)).b;\n"
314 "#endif\n"
315 "}\n"
316 "#endif\n"
317 "#else // !MODE_POSTPROCESS\n"
318 "\n"
319 "\n"
320 "\n"
321 "\n"
322 "#ifdef MODE_GENERIC\n"
323 "#ifdef USEDIFFUSE\n"
324 "dp_varying mediump vec2 TexCoord1;\n"
325 "#endif\n"
326 "#ifdef USESPECULAR\n"
327 "dp_varying mediump vec2 TexCoord2;\n"
328 "#endif\n"
329 "uniform myhalf Alpha;\n"
330 "#ifdef VERTEX_SHADER\n"
331 "void main(void)\n"
332 "{\n"
333 "       VertexColor = Attrib_Color;\n"
334 "#ifdef USEDIFFUSE\n"
335 "       TexCoord1 = Attrib_TexCoord0.xy;\n"
336 "#endif\n"
337 "#ifdef USESPECULAR\n"
338 "       TexCoord2 = Attrib_TexCoord1.xy;\n"
339 "#endif\n"
340 "       gl_Position = ModelViewProjectionMatrix * Attrib_Position;\n"
341 "#ifdef USETRIPPY\n"
342 "       gl_Position = TrippyVertex(gl_Position);\n"
343 "#endif\n"
344 "}\n"
345 "#endif\n"
346 "\n"
347 "#ifdef FRAGMENT_SHADER\n"
348 "#ifdef USEDIFFUSE\n"
349 "uniform sampler2D Texture_First;\n"
350 "#endif\n"
351 "#ifdef USESPECULAR\n"
352 "uniform sampler2D Texture_Second;\n"
353 "#endif\n"
354 "#ifdef USEGAMMARAMPS\n"
355 "uniform sampler2D Texture_GammaRamps;\n"
356 "#endif\n"
357 "\n"
358 "void main(void)\n"
359 "{\n"
360 "#ifdef USEVIEWTINT\n"
361 "       dp_FragColor = VertexColor;\n"
362 "#else\n"
363 "       dp_FragColor = vec4(1.0, 1.0, 1.0, 1.0);\n"
364 "#endif\n"
365 "#ifdef USEDIFFUSE\n"
366 "# ifdef USEREFLECTCUBE\n"
367 "       // suppress texture alpha\n"
368 "       dp_FragColor.rgb *= dp_texture2D(Texture_First, TexCoord1).rgb;\n"
369 "# else\n"
370 "       dp_FragColor *= dp_texture2D(Texture_First, TexCoord1);\n"
371 "# endif\n"
372 "#endif\n"
373 "\n"
374 "#ifdef USESPECULAR\n"
375 "       vec4 tex2 = dp_texture2D(Texture_Second, TexCoord2);\n"
376 "# ifdef USECOLORMAPPING\n"
377 "       dp_FragColor *= tex2;\n"
378 "# endif\n"
379 "# ifdef USEGLOW\n"
380 "       dp_FragColor += tex2;\n"
381 "# endif\n"
382 "# ifdef USEVERTEXTEXTUREBLEND\n"
383 "       dp_FragColor = mix(dp_FragColor, tex2, tex2.a);\n"
384 "# endif\n"
385 "#endif\n"
386 "#ifdef USEGAMMARAMPS\n"
387 "       dp_FragColor.r = dp_texture2D(Texture_GammaRamps, vec2(dp_FragColor.r, 0)).r;\n"
388 "       dp_FragColor.g = dp_texture2D(Texture_GammaRamps, vec2(dp_FragColor.g, 0)).g;\n"
389 "       dp_FragColor.b = dp_texture2D(Texture_GammaRamps, vec2(dp_FragColor.b, 0)).b;\n"
390 "#endif\n"
391 "#ifdef USEALPHAKILL\n"
392 "       dp_FragColor.a *= Alpha;\n"
393 "#endif\n"
394 "}\n"
395 "#endif\n"
396 "#else // !MODE_GENERIC\n"
397 "\n"
398 "\n"
399 "\n"
400 "\n"
401 "#ifdef MODE_BLOOMBLUR\n"
402 "dp_varying mediump vec2 TexCoord;\n"
403 "#ifdef VERTEX_SHADER\n"
404 "void main(void)\n"
405 "{\n"
406 "       VertexColor = Attrib_Color;\n"
407 "       TexCoord = Attrib_TexCoord0.xy;\n"
408 "       gl_Position = ModelViewProjectionMatrix * Attrib_Position;\n"
409 "}\n"
410 "#endif\n"
411 "\n"
412 "#ifdef FRAGMENT_SHADER\n"
413 "uniform sampler2D Texture_First;\n"
414 "uniform mediump vec4 BloomBlur_Parameters;\n"
415 "\n"
416 "void main(void)\n"
417 "{\n"
418 "       int i;\n"
419 "       vec2 tc = TexCoord;\n"
420 "       vec3 color = dp_texture2D(Texture_First, tc).rgb;\n"
421 "       tc += BloomBlur_Parameters.xy;\n"
422 "       for (i = 1;i < SAMPLES;i++)\n"
423 "       {\n"
424 "               color += dp_texture2D(Texture_First, tc).rgb;\n"
425 "               tc += BloomBlur_Parameters.xy;\n"
426 "       }\n"
427 "       dp_FragColor = vec4(color * BloomBlur_Parameters.z + vec3(BloomBlur_Parameters.w), 1);\n"
428 "}\n"
429 "#endif\n"
430 "#else // !MODE_BLOOMBLUR\n"
431 "#ifdef MODE_REFRACTION\n"
432 "dp_varying mediump vec2 TexCoord;\n"
433 "dp_varying highp vec4 ModelViewProjectionPosition;\n"
434 "uniform highp mat4 TexMatrix;\n"
435 "#ifdef VERTEX_SHADER\n"
436 "\n"
437 "void main(void)\n"
438 "{\n"
439 "#ifdef USEALPHAGENVERTEX\n"
440 "       VertexColor = Attrib_Color;\n"
441 "#endif\n"
442 "       TexCoord = vec2(TexMatrix * Attrib_TexCoord0);\n"
443 "       gl_Position = ModelViewProjectionMatrix * Attrib_Position;\n"
444 "       ModelViewProjectionPosition = gl_Position;\n"
445 "#ifdef USETRIPPY\n"
446 "       gl_Position = TrippyVertex(gl_Position);\n"
447 "#endif\n"
448 "}\n"
449 "#endif\n"
450 "\n"
451 "#ifdef FRAGMENT_SHADER\n"
452 "uniform sampler2D Texture_Normal;\n"
453 "uniform sampler2D Texture_Refraction;\n"
454 "\n"
455 "uniform mediump vec4 DistortScaleRefractReflect;\n"
456 "uniform mediump vec4 ScreenScaleRefractReflect;\n"
457 "uniform mediump vec4 ScreenCenterRefractReflect;\n"
458 "uniform mediump vec4 RefractColor;\n"
459 "uniform mediump vec4 ReflectColor;\n"
460 "uniform highp float ClientTime;\n"
461 "#ifdef USENORMALMAPSCROLLBLEND\n"
462 "uniform highp vec2 NormalmapScrollBlend;\n"
463 "#endif\n"
464 "\n"
465 "void main(void)\n"
466 "{\n"
467 "       vec2 ScreenScaleRefractReflectIW = ScreenScaleRefractReflect.xy * (1.0 / ModelViewProjectionPosition.w);\n"
468 "       //vec2 ScreenTexCoord = (ModelViewProjectionPosition.xy + normalize(vec3(dp_texture2D(Texture_Normal, TexCoord)) - vec3(0.5)).xy * DistortScaleRefractReflect.xy * 100) * ScreenScaleRefractReflectIW + ScreenCenterRefractReflect.xy;\n"
469 "       vec2 SafeScreenTexCoord = ModelViewProjectionPosition.xy * ScreenScaleRefractReflectIW + ScreenCenterRefractReflect.xy;\n"
470 "#ifdef USEALPHAGENVERTEX\n"
471 "       vec2 distort = DistortScaleRefractReflect.xy * VertexColor.a;\n"
472 "       vec4 refractcolor = mix(RefractColor, vec4(1.0, 1.0, 1.0, 1.0), VertexColor.a);\n"
473 "#else\n"
474 "       vec2 distort = DistortScaleRefractReflect.xy;\n"
475 "       vec4 refractcolor = RefractColor;\n"
476 "#endif\n"
477 "       #ifdef USENORMALMAPSCROLLBLEND\n"
478 "               vec3 normal = dp_texture2D(Texture_Normal, (TexCoord + vec2(0.08, 0.08)*ClientTime*NormalmapScrollBlend.x*0.5)*NormalmapScrollBlend.y).rgb - vec3(1.0);\n"
479 "               normal += dp_texture2D(Texture_Normal, (TexCoord + vec2(-0.06, -0.09)*ClientTime*NormalmapScrollBlend.x)*NormalmapScrollBlend.y*0.75).rgb;\n"
480 "               vec2 ScreenTexCoord = SafeScreenTexCoord + vec3(normalize(cast_myhalf3(normal))).xy * distort;\n"
481 "       #else\n"
482 "               vec2 ScreenTexCoord = SafeScreenTexCoord + vec3(normalize(cast_myhalf3(dp_texture2D(Texture_Normal, TexCoord)) - cast_myhalf3(0.5))).xy * distort;\n"
483 "       #endif\n"
484 "       // FIXME temporary hack to detect the case that the reflection\n"
485 "       // gets blackened at edges due to leaving the area that contains actual\n"
486 "       // content.\n"
487 "       // Remove this 'ack once we have a better way to stop this thing from\n"
488 "       // 'appening.\n"
489 "       float f = min(1.0, length(dp_texture2D(Texture_Refraction, ScreenTexCoord + vec2(0.01, 0.01)).rgb) / 0.05);\n"
490 "       f      *= min(1.0, length(dp_texture2D(Texture_Refraction, ScreenTexCoord + vec2(0.01, -0.01)).rgb) / 0.05);\n"
491 "       f      *= min(1.0, length(dp_texture2D(Texture_Refraction, ScreenTexCoord + vec2(-0.01, 0.01)).rgb) / 0.05);\n"
492 "       f      *= min(1.0, length(dp_texture2D(Texture_Refraction, ScreenTexCoord + vec2(-0.01, -0.01)).rgb) / 0.05);\n"
493 "       ScreenTexCoord = mix(SafeScreenTexCoord, ScreenTexCoord, f);\n"
494 "       dp_FragColor = vec4(dp_texture2D(Texture_Refraction, ScreenTexCoord).rgb, 1.0) * refractcolor;\n"
495 "}\n"
496 "#endif\n"
497 "#else // !MODE_REFRACTION\n"
498 "\n"
499 "\n"
500 "\n"
501 "\n"
502 "#ifdef MODE_WATER\n"
503 "dp_varying mediump vec2 TexCoord;\n"
504 "dp_varying highp vec3 EyeVector;\n"
505 "dp_varying highp vec4 ModelViewProjectionPosition;\n"
506 "#ifdef VERTEX_SHADER\n"
507 "uniform highp vec3 EyePosition;\n"
508 "uniform highp mat4 TexMatrix;\n"
509 "\n"
510 "void main(void)\n"
511 "{\n"
512 "#ifdef USEALPHAGENVERTEX\n"
513 "       VertexColor = Attrib_Color;\n"
514 "#endif\n"
515 "       TexCoord = vec2(TexMatrix * Attrib_TexCoord0);\n"
516 "       vec3 EyeRelative = EyePosition - Attrib_Position.xyz;\n"
517 "       EyeVector.x = dot(EyeRelative, Attrib_TexCoord1.xyz);\n"
518 "       EyeVector.y = dot(EyeRelative, Attrib_TexCoord2.xyz);\n"
519 "       EyeVector.z = dot(EyeRelative, Attrib_TexCoord3.xyz);\n"
520 "       gl_Position = ModelViewProjectionMatrix * Attrib_Position;\n"
521 "       ModelViewProjectionPosition = gl_Position;\n"
522 "#ifdef USETRIPPY\n"
523 "       gl_Position = TrippyVertex(gl_Position);\n"
524 "#endif\n"
525 "}\n"
526 "#endif\n"
527 "\n"
528 "#ifdef FRAGMENT_SHADER\n"
529 "uniform sampler2D Texture_Normal;\n"
530 "uniform sampler2D Texture_Refraction;\n"
531 "uniform sampler2D Texture_Reflection;\n"
532 "\n"
533 "uniform mediump vec4 DistortScaleRefractReflect;\n"
534 "uniform mediump vec4 ScreenScaleRefractReflect;\n"
535 "uniform mediump vec4 ScreenCenterRefractReflect;\n"
536 "uniform mediump vec4 RefractColor;\n"
537 "uniform mediump vec4 ReflectColor;\n"
538 "uniform mediump float ReflectFactor;\n"
539 "uniform mediump float ReflectOffset;\n"
540 "uniform highp float ClientTime;\n"
541 "#ifdef USENORMALMAPSCROLLBLEND\n"
542 "uniform highp vec2 NormalmapScrollBlend;\n"
543 "#endif\n"
544 "\n"
545 "void main(void)\n"
546 "{\n"
547 "       vec4 ScreenScaleRefractReflectIW = ScreenScaleRefractReflect * (1.0 / ModelViewProjectionPosition.w);\n"
548 "       //vec4 ScreenTexCoord = (ModelViewProjectionPosition.xyxy + normalize(vec3(dp_texture2D(Texture_Normal, TexCoord)) - vec3(0.5)).xyxy * DistortScaleRefractReflect * 100) * ScreenScaleRefractReflectIW + ScreenCenterRefractReflect;\n"
549 "       vec4 SafeScreenTexCoord = ModelViewProjectionPosition.xyxy * ScreenScaleRefractReflectIW + ScreenCenterRefractReflect;\n"
550 "       //SafeScreenTexCoord = gl_FragCoord.xyxy * vec4(1.0 / 1920.0, 1.0 / 1200.0, 1.0 / 1920.0, 1.0 / 1200.0);\n"
551 "       // slight water animation via 2 layer scrolling (todo: tweak)\n"
552 "#ifdef USEALPHAGENVERTEX\n"
553 "       vec4 distort = DistortScaleRefractReflect * VertexColor.a;\n"
554 "       float reflectoffset = ReflectOffset * VertexColor.a;\n"
555 "       float reflectfactor = ReflectFactor * VertexColor.a;\n"
556 "       vec4 refractcolor = mix(RefractColor, vec4(1.0, 1.0, 1.0, 1.0), VertexColor.a);\n"
557 "#else\n"
558 "       vec4 distort = DistortScaleRefractReflect;\n"
559 "       float reflectoffset = ReflectOffset;\n"
560 "       float reflectfactor = ReflectFactor;\n"
561 "       vec4 refractcolor = RefractColor;\n"
562 "#endif\n"
563 "       #ifdef USENORMALMAPSCROLLBLEND\n"
564 "               vec3 normal = dp_texture2D(Texture_Normal, (TexCoord + vec2(0.08, 0.08)*ClientTime*NormalmapScrollBlend.x*0.5)*NormalmapScrollBlend.y).rgb - vec3(1.0);\n"
565 "               normal += dp_texture2D(Texture_Normal, (TexCoord + vec2(-0.06, -0.09)*ClientTime*NormalmapScrollBlend.x)*NormalmapScrollBlend.y*0.75).rgb;\n"
566 "               vec4 ScreenTexCoord = SafeScreenTexCoord + vec2(normalize(normal) + vec3(0.15)).xyxy * distort;\n"
567 "       #else\n"
568 "               vec4 ScreenTexCoord = SafeScreenTexCoord + vec2(normalize(vec3(dp_texture2D(Texture_Normal, TexCoord)) - vec3(0.5))).xyxy * distort;\n"
569 "       #endif\n"
570 "       // FIXME temporary hack to detect the case that the reflection\n"
571 "       // gets blackened at edges due to leaving the area that contains actual\n"
572 "       // content.\n"
573 "       // Remove this 'ack once we have a better way to stop this thing from\n"
574 "       // 'appening.\n"
575 "       float f  = min(1.0, length(dp_texture2D(Texture_Refraction, ScreenTexCoord.xy + vec2(0.005, 0.01)).rgb) / 0.002);\n"
576 "       f       *= min(1.0, length(dp_texture2D(Texture_Refraction, ScreenTexCoord.xy + vec2(0.005, -0.01)).rgb) / 0.002);\n"
577 "       f       *= min(1.0, length(dp_texture2D(Texture_Refraction, ScreenTexCoord.xy + vec2(-0.005, 0.01)).rgb) / 0.002);\n"
578 "       f       *= min(1.0, length(dp_texture2D(Texture_Refraction, ScreenTexCoord.xy + vec2(-0.005, -0.01)).rgb) / 0.002);\n"
579 "       ScreenTexCoord.xy = mix(SafeScreenTexCoord.xy, ScreenTexCoord.xy, f);\n"
580 "       f  = min(1.0, length(dp_texture2D(Texture_Reflection, ScreenTexCoord.zw + vec2(0.005, 0.005)).rgb) / 0.002);\n"
581 "       f *= min(1.0, length(dp_texture2D(Texture_Reflection, ScreenTexCoord.zw + vec2(0.005, -0.005)).rgb) / 0.002);\n"
582 "       f *= min(1.0, length(dp_texture2D(Texture_Reflection, ScreenTexCoord.zw + vec2(-0.005, 0.005)).rgb) / 0.002);\n"
583 "       f *= min(1.0, length(dp_texture2D(Texture_Reflection, ScreenTexCoord.zw + vec2(-0.005, -0.005)).rgb) / 0.002);\n"
584 "       ScreenTexCoord.zw = mix(SafeScreenTexCoord.zw, ScreenTexCoord.zw, f);\n"
585 "       float Fresnel = pow(min(1.0, 1.0 - float(normalize(EyeVector).z)), 2.0) * reflectfactor + reflectoffset;\n"
586 "       dp_FragColor = mix(vec4(dp_texture2D(Texture_Refraction, ScreenTexCoord.xy).rgb, 1) * refractcolor, vec4(dp_texture2D(Texture_Reflection, ScreenTexCoord.zw).rgb, 1) * ReflectColor, Fresnel);\n"
587 "}\n"
588 "#endif\n"
589 "#else // !MODE_WATER\n"
590 "\n"
591 "\n"
592 "\n"
593 "\n"
594 "// common definitions between vertex shader and fragment shader:\n"
595 "\n"
596 "dp_varying mediump vec4 TexCoordSurfaceLightmap;\n"
597 "#ifdef USEVERTEXTEXTUREBLEND\n"
598 "dp_varying mediump vec2 TexCoord2;\n"
599 "#endif\n"
600 "\n"
601 "#ifdef MODE_LIGHTSOURCE\n"
602 "dp_varying mediump vec3 CubeVector;\n"
603 "#endif\n"
604 "\n"
605 "#if (defined(MODE_LIGHTSOURCE) || defined(MODE_LIGHTDIRECTION)) && defined(USEDIFFUSE)\n"
606 "dp_varying mediump vec3 LightVector;\n"
607 "#endif\n"
608 "\n"
609 "#ifdef USEEYEVECTOR\n"
610 "dp_varying highp vec4 EyeVectorFogDepth;\n"
611 "#endif\n"
612 "\n"
613 "#if defined(MODE_LIGHTDIRECTIONMAP_MODELSPACE) || defined(MODE_DEFERREDGEOMETRY) || defined(USEREFLECTCUBE) || defined(USEBOUNCEGRIDDIRECTIONAL)\n"
614 "dp_varying highp vec4 VectorS; // direction of S texcoord (sometimes crudely called tangent)\n"
615 "dp_varying highp vec4 VectorT; // direction of T texcoord (sometimes crudely called binormal)\n"
616 "dp_varying highp vec4 VectorR; // direction of R texcoord (surface normal)\n"
617 "#else\n"
618 "# ifdef USEFOG\n"
619 "dp_varying highp vec3 EyeVectorModelSpace;\n"
620 "# endif\n"
621 "#endif\n"
622 "\n"
623 "#ifdef USEREFLECTION\n"
624 "dp_varying highp vec4 ModelViewProjectionPosition;\n"
625 "#endif\n"
626 "#ifdef MODE_DEFERREDLIGHTSOURCE\n"
627 "uniform highp vec3 LightPosition;\n"
628 "dp_varying highp vec4 ModelViewPosition;\n"
629 "#endif\n"
630 "\n"
631 "#ifdef MODE_LIGHTSOURCE\n"
632 "uniform highp vec3 LightPosition;\n"
633 "#endif\n"
634 "uniform highp vec3 EyePosition;\n"
635 "#ifdef MODE_LIGHTDIRECTION\n"
636 "uniform highp vec3 LightDir;\n"
637 "#endif\n"
638 "uniform highp vec4 FogPlane;\n"
639 "\n"
640 "#ifdef USESHADOWMAPORTHO\n"
641 "dp_varying highp vec3 ShadowMapTC;\n"
642 "#endif\n"
643 "\n"
644 "#ifdef USEBOUNCEGRID\n"
645 "dp_varying highp vec3 BounceGridTexCoord;\n"
646 "#endif\n"
647 "\n"
648 "#ifdef MODE_DEFERREDGEOMETRY\n"
649 "dp_varying highp float Depth;\n"
650 "#endif\n"
651 "\n"
652 "\n"
653 "\n"
654 "\n"
655 "\n"
656 "\n"
657 "// TODO: get rid of tangentt (texcoord2) and use a crossproduct to regenerate it from tangents (texcoord1) and normal (texcoord3), this would require sending a 4 component texcoord1 with W as 1 or -1 according to which side the texcoord2 should be on\n"
658 "\n"
659 "// fragment shader specific:\n"
660 "#ifdef FRAGMENT_SHADER\n"
661 "\n"
662 "uniform sampler2D Texture_Normal;\n"
663 "uniform sampler2D Texture_Color;\n"
664 "uniform sampler2D Texture_Gloss;\n"
665 "#ifdef USEGLOW\n"
666 "uniform sampler2D Texture_Glow;\n"
667 "#endif\n"
668 "#ifdef USEVERTEXTEXTUREBLEND\n"
669 "uniform sampler2D Texture_SecondaryNormal;\n"
670 "uniform sampler2D Texture_SecondaryColor;\n"
671 "uniform sampler2D Texture_SecondaryGloss;\n"
672 "#ifdef USEGLOW\n"
673 "uniform sampler2D Texture_SecondaryGlow;\n"
674 "#endif\n"
675 "#endif\n"
676 "#ifdef USECOLORMAPPING\n"
677 "uniform sampler2D Texture_Pants;\n"
678 "uniform sampler2D Texture_Shirt;\n"
679 "#endif\n"
680 "#ifdef USEFOG\n"
681 "#ifdef USEFOGHEIGHTTEXTURE\n"
682 "uniform sampler2D Texture_FogHeightTexture;\n"
683 "#endif\n"
684 "uniform sampler2D Texture_FogMask;\n"
685 "#endif\n"
686 "#ifdef USELIGHTMAP\n"
687 "uniform sampler2D Texture_Lightmap;\n"
688 "#endif\n"
689 "#if defined(MODE_LIGHTDIRECTIONMAP_MODELSPACE) || defined(MODE_LIGHTDIRECTIONMAP_TANGENTSPACE)\n"
690 "uniform sampler2D Texture_Deluxemap;\n"
691 "#endif\n"
692 "#ifdef USEREFLECTION\n"
693 "uniform sampler2D Texture_Reflection;\n"
694 "#endif\n"
695 "\n"
696 "#ifdef MODE_DEFERREDLIGHTSOURCE\n"
697 "uniform sampler2D Texture_ScreenNormalMap;\n"
698 "#endif\n"
699 "#ifdef USEDEFERREDLIGHTMAP\n"
700 "#ifdef USECELOUTLINES\n"
701 "uniform sampler2D Texture_ScreenNormalMap;\n"
702 "#endif\n"
703 "uniform sampler2D Texture_ScreenDiffuse;\n"
704 "uniform sampler2D Texture_ScreenSpecular;\n"
705 "#endif\n"
706 "\n"
707 "uniform mediump vec3 Color_Pants;\n"
708 "uniform mediump vec3 Color_Shirt;\n"
709 "uniform mediump vec3 FogColor;\n"
710 "\n"
711 "#ifdef USEFOG\n"
712 "uniform highp float FogRangeRecip;\n"
713 "uniform highp float FogPlaneViewDist;\n"
714 "uniform highp float FogHeightFade;\n"
715 "vec3 FogVertex(vec4 surfacecolor)\n"
716 "{\n"
717 "#if defined(MODE_LIGHTDIRECTIONMAP_MODELSPACE) || defined(MODE_DEFERREDGEOMETRY) || defined(USEREFLECTCUBE) || defined(USEBOUNCEGRIDDIRECTIONAL)\n"
718 "       vec3 EyeVectorModelSpace = vec3(VectorS.w, VectorT.w, VectorR.w);\n"
719 "#endif\n"
720 "       float FogPlaneVertexDist = EyeVectorFogDepth.w;\n"
721 "       float fogfrac;\n"
722 "       vec3 fc = FogColor;\n"
723 "#ifdef USEFOGALPHAHACK\n"
724 "       fc *= surfacecolor.a;\n"
725 "#endif\n"
726 "#ifdef USEFOGHEIGHTTEXTURE\n"
727 "       vec4 fogheightpixel = dp_texture2D(Texture_FogHeightTexture, vec2(1,1) + vec2(FogPlaneVertexDist, FogPlaneViewDist) * (-2.0 * FogHeightFade));\n"
728 "       fogfrac = fogheightpixel.a;\n"
729 "       return mix(fogheightpixel.rgb * fc, surfacecolor.rgb, dp_texture2D(Texture_FogMask, cast_myhalf2(length(EyeVectorModelSpace)*fogfrac*FogRangeRecip, 0.0)).r);\n"
730 "#else\n"
731 "# ifdef USEFOGOUTSIDE\n"
732 "       fogfrac = min(0.0, FogPlaneVertexDist) / (FogPlaneVertexDist - FogPlaneViewDist) * min(1.0, min(0.0, FogPlaneVertexDist) * FogHeightFade);\n"
733 "# else\n"
734 "       fogfrac = FogPlaneViewDist / (FogPlaneViewDist - max(0.0, FogPlaneVertexDist)) * min(1.0, (min(0.0, FogPlaneVertexDist) + FogPlaneViewDist) * FogHeightFade);\n"
735 "# endif\n"
736 "       return mix(fc, surfacecolor.rgb, dp_texture2D(Texture_FogMask, cast_myhalf2(length(EyeVectorModelSpace)*fogfrac*FogRangeRecip, 0.0)).r);\n"
737 "#endif\n"
738 "}\n"
739 "#endif\n"
740 "\n"
741 "#ifdef USEOFFSETMAPPING\n"
742 "uniform mediump vec4 OffsetMapping_ScaleSteps;\n"
743 "uniform mediump float OffsetMapping_Bias;\n"
744 "#ifdef USEOFFSETMAPPING_LOD\n"
745 "uniform mediump float OffsetMapping_LodDistance;\n"
746 "#endif\n"
747 "vec2 OffsetMapping(vec2 TexCoord, vec2 dPdx, vec2 dPdy)\n"
748 "{\n"
749 "       float i;\n"
750 "       // distance-based LOD\n"
751 "#ifdef USEOFFSETMAPPING_LOD\n"
752 "       //mediump float LODFactor = min(1.0, OffsetMapping_LodDistance / EyeVectorFogDepth.z);\n"
753 "       //mediump vec4 ScaleSteps = vec4(OffsetMapping_ScaleSteps.x, OffsetMapping_ScaleSteps.y * LODFactor, OffsetMapping_ScaleSteps.z / LODFactor, OffsetMapping_ScaleSteps.w * LODFactor);\n"
754 "       mediump float GuessLODFactor = min(1.0, OffsetMapping_LodDistance / EyeVectorFogDepth.z);\n"
755 "#ifdef USEOFFSETMAPPING_RELIEFMAPPING\n"
756 "       // stupid workaround because 1-step and 2-step reliefmapping is void\n"
757 "       mediump float LODSteps = max(3.0, ceil(GuessLODFactor * OffsetMapping_ScaleSteps.y));\n"
758 "#else\n"
759 "       mediump float LODSteps = ceil(GuessLODFactor * OffsetMapping_ScaleSteps.y);\n"
760 "#endif\n"
761 "       mediump float LODFactor = LODSteps / OffsetMapping_ScaleSteps.y;\n"
762 "       mediump vec4 ScaleSteps = vec4(OffsetMapping_ScaleSteps.x, LODSteps, 1.0 / LODSteps, OffsetMapping_ScaleSteps.w * LODFactor);\n"
763 "#else\n"
764 "       #define ScaleSteps OffsetMapping_ScaleSteps\n"
765 "#endif\n"
766 "#ifdef USEOFFSETMAPPING_RELIEFMAPPING\n"
767 "       float f;\n"
768 "       // 14 sample relief mapping: linear search and then binary search\n"
769 "       // this basically steps forward a small amount repeatedly until it finds\n"
770 "       // itself inside solid, then jitters forward and back using decreasing\n"
771 "       // amounts to find the impact\n"
772 "       //vec3 OffsetVector = vec3(EyeVectorFogDepth.xy * ((1.0 / EyeVectorFogDepth.z) * ScaleSteps.x) * vec2(-1, 1), -1);\n"
773 "       //vec3 OffsetVector = vec3(normalize(EyeVectorFogDepth.xy) * ScaleSteps.x * vec2(-1, 1), -1);\n"
774 "       vec3 OffsetVector = vec3(normalize(EyeVectorFogDepth.xyz).xy * ScaleSteps.x * vec2(-1, 1), -1);\n"
775 "       vec3 RT = vec3(vec2(TexCoord.xy - OffsetVector.xy*OffsetMapping_Bias), 1);\n"
776 "       OffsetVector *= ScaleSteps.z;\n"
777 "       for(i = 1.0; i < ScaleSteps.y; ++i)\n"
778 "               RT += OffsetVector *  step(dp_textureGrad(Texture_Normal, RT.xy, dPdx, dPdy).a, RT.z);\n"
779 "       for(i = 0.0, f = 1.0; i < ScaleSteps.w; ++i, f *= 0.5)\n"
780 "               RT += OffsetVector * (step(dp_textureGrad(Texture_Normal, RT.xy, dPdx, dPdy).a, RT.z) * f - 0.5 * f);\n"
781 "       return RT.xy;\n"
782 "#else\n"
783 "       // 2 sample offset mapping (only 2 samples because of ATI Radeon 9500-9800/X300 limits)\n"
784 "       //vec2 OffsetVector = vec2(EyeVectorFogDepth.xy * ((1.0 / EyeVectorFogDepth.z) * ScaleSteps.x) * vec2(-1, 1));\n"
785 "       //vec2 OffsetVector = vec2(normalize(EyeVectorFogDepth.xy) * ScaleSteps.x * vec2(-1, 1));\n"
786 "       vec2 OffsetVector = vec2(normalize(EyeVectorFogDepth.xyz).xy * ScaleSteps.x * vec2(-1, 1));\n"
787 "       OffsetVector *= ScaleSteps.z;\n"
788 "       for(i = 0.0; i < ScaleSteps.y; ++i)\n"
789 "               TexCoord += OffsetVector * ((1.0 - OffsetMapping_Bias) - dp_textureGrad(Texture_Normal, TexCoord, dPdx, dPdy).a);\n"
790 "       return TexCoord;\n"
791 "#endif\n"
792 "}\n"
793 "#endif // USEOFFSETMAPPING\n"
794 "\n"
795 "#if defined(MODE_LIGHTSOURCE) || defined(MODE_DEFERREDLIGHTSOURCE)\n"
796 "uniform sampler2D Texture_Attenuation;\n"
797 "uniform samplerCube Texture_Cube;\n"
798 "#endif\n"
799 "\n"
800 "#if defined(MODE_LIGHTSOURCE) || defined(MODE_DEFERREDLIGHTSOURCE) || defined(USESHADOWMAPORTHO)\n"
801 "\n"
802 "#ifdef USESHADOWMAP2D\n"
803 "# ifdef USESHADOWSAMPLER\n"
804 "uniform sampler2DShadow Texture_ShadowMap2D;\n"
805 "# else\n"
806 "uniform sampler2D Texture_ShadowMap2D;\n"
807 "# endif\n"
808 "#endif\n"
809 "\n"
810 "#ifdef USESHADOWMAPVSDCT\n"
811 "uniform samplerCube Texture_CubeProjection;\n"
812 "#endif\n"
813 "\n"
814 "#if defined(USESHADOWMAP2D)\n"
815 "uniform mediump vec2 ShadowMap_TextureScale;\n"
816 "uniform mediump vec4 ShadowMap_Parameters;\n"
817 "#endif\n"
818 "\n"
819 "#if defined(USESHADOWMAP2D)\n"
820 "# ifdef USESHADOWMAPORTHO\n"
821 "#  define GetShadowMapTC2D(dir) (min(dir, ShadowMap_Parameters.xyz))\n"
822 "# else\n"
823 "#  ifdef USESHADOWMAPVSDCT\n"
824 "vec3 GetShadowMapTC2D(vec3 dir)\n"
825 "{\n"
826 "       vec3 adir = abs(dir);\n"
827 "       float m = max(max(adir.x, adir.y), adir.z);\n"
828 "       vec4 proj = dp_textureCube(Texture_CubeProjection, dir);\n"
829 "#ifdef USEDEPTHRGB\n"
830 "       return vec3(mix(dir.xy, dir.zz, proj.xy) * (ShadowMap_Parameters.x / m) +  proj.zw * ShadowMap_Parameters.z, m + 64.0 * ShadowMap_Parameters.w);\n"
831 "#else\n"
832 "       vec2 mparams = ShadowMap_Parameters.xy / m;\n"
833 "       return vec3(mix(dir.xy, dir.zz, proj.xy) * mparams.x + proj.zw * ShadowMap_Parameters.z, mparams.y + ShadowMap_Parameters.w);\n"
834 "#endif\n"
835 "}\n"
836 "#  else\n"
837 "vec3 GetShadowMapTC2D(vec3 dir)\n"
838 "{\n"
839 "       vec3 adir = abs(dir);\n"
840 "       float m; vec4 proj;\n"
841 "       if (adir.x > adir.y) { m = adir.x; proj = vec4(dir.zyx, 0.5); } else { m = adir.y; proj = vec4(dir.xzy, 1.5); }\n"
842 "       if (adir.z > m) { m = adir.z; proj = vec4(dir, 2.5); }\n"
843 "#ifdef USEDEPTHRGB\n"
844 "       return vec3(proj.xy * (ShadowMap_Parameters.x / m) + vec2(0.5,0.5) + vec2(proj.z < 0.0 ? 1.5 : 0.5, proj.w) * ShadowMap_Parameters.z, m + 64.0 * ShadowMap_Parameters.w);\n"
845 "#else\n"
846 "       vec2 mparams = ShadowMap_Parameters.xy / m;\n"
847 "       return vec3(proj.xy * mparams.x + vec2(proj.z < 0.0 ? 1.5 : 0.5, proj.w) * ShadowMap_Parameters.z, mparams.y + ShadowMap_Parameters.w);\n"
848 "#endif\n"
849 "}\n"
850 "#  endif\n"
851 "# endif\n"
852 "#endif // defined(USESHADOWMAP2D)\n"
853 "\n"
854 "# ifdef USESHADOWMAP2D\n"
855 "float ShadowMapCompare(vec3 dir)\n"
856 "{\n"
857 "       vec3 shadowmaptc = GetShadowMapTC2D(dir);\n"
858 "       float f;\n"
859 "\n"
860 "#  ifdef USEDEPTHRGB\n"
861 "#   ifdef USESHADOWMAPPCF\n"
862 "#    define texval(x, y) decodedepthmacro(dp_texture2D(Texture_ShadowMap2D, center + vec2(x, y)*ShadowMap_TextureScale))\n"
863 "#    if USESHADOWMAPPCF > 1\n"
864 "       vec2 center = shadowmaptc.xy - 0.5, offset = fract(center);\n"
865 "       center *= ShadowMap_TextureScale;\n"
866 "       vec4 row1 = step(shadowmaptc.z, vec4(texval(-1.0, -1.0), texval( 0.0, -1.0), texval( 1.0, -1.0), texval( 2.0, -1.0)));\n"
867 "       vec4 row2 = step(shadowmaptc.z, vec4(texval(-1.0,  0.0), texval( 0.0,  0.0), texval( 1.0,  0.0), texval( 2.0,  0.0)));\n"
868 "       vec4 row3 = step(shadowmaptc.z, vec4(texval(-1.0,  1.0), texval( 0.0,  1.0), texval( 1.0,  1.0), texval( 2.0,  1.0)));\n"
869 "       vec4 row4 = step(shadowmaptc.z, vec4(texval(-1.0,  2.0), texval( 0.0,  2.0), texval( 1.0,  2.0), texval( 2.0,  2.0)));\n"
870 "       vec4 cols = row2 + row3 + mix(row1, row4, offset.y);\n"
871 "       f = dot(mix(cols.xyz, cols.yzw, offset.x), vec3(1.0/9.0));\n"
872 "#    else\n"
873 "       vec2 center = shadowmaptc.xy*ShadowMap_TextureScale, offset = fract(shadowmaptc.xy);\n"
874 "       vec3 row1 = step(shadowmaptc.z, vec3(texval(-1.0, -1.0), texval( 0.0, -1.0), texval( 1.0, -1.0)));\n"
875 "       vec3 row2 = step(shadowmaptc.z, vec3(texval(-1.0,  0.0), texval( 0.0,  0.0), texval( 1.0,  0.0)));\n"
876 "       vec3 row3 = step(shadowmaptc.z, vec3(texval(-1.0,  1.0), texval( 0.0,  1.0), texval( 1.0,  1.0)));\n"
877 "       vec3 cols = row2 + mix(row1, row3, offset.y);\n"
878 "       f = dot(mix(cols.xy, cols.yz, offset.x), vec2(0.25));\n"
879 "#    endif\n"
880 "#   else\n"
881 "       f = step(shadowmaptc.z, decodedepthmacro(dp_texture2D(Texture_ShadowMap2D, shadowmaptc.xy*ShadowMap_TextureScale)));\n"
882 "#   endif\n"
883 "#  else\n"
884 "#   ifdef USESHADOWSAMPLER\n"
885 "#     ifdef USESHADOWMAPPCF\n"
886 "#       define texval(off) dp_shadow2D(Texture_ShadowMap2D, vec3(off, shadowmaptc.z))  \n"
887 "       vec2 offset = fract(shadowmaptc.xy - 0.5);\n"
888 "       vec4 size = vec4(offset + 1.0, 2.0 - offset), weight = (vec4(2.0 - 1.0 / size.xy, 1.0 / size.zw - 1.0) + (shadowmaptc.xy - offset).xyxy)*ShadowMap_TextureScale.xyxy;\n"
889 "       f = (1.0/9.0)*dot(size.zxzx*size.wwyy, vec4(texval(weight.zw), texval(weight.xw), texval(weight.zy), texval(weight.xy)));\n"
890 "//#       define texval(x, y) dp_shadow2D(Texture_ShadowMap2D, vec3(center + vec2(x, y)*ShadowMap_TextureScale, shadowmaptc.z))  \n"
891 "//     vec2 center = shadowmaptc.xy*ShadowMap_TextureScale;\n"
892 "//     f = dot(vec4(0.25), vec4(texval(-0.4, 1.0), texval(-1.0, -0.4), texval(0.4, -1.0), texval(1.0, 0.4)));\n"
893 "#     else\n"
894 "       f = dp_shadow2D(Texture_ShadowMap2D, vec3(shadowmaptc.xy*ShadowMap_TextureScale, shadowmaptc.z));\n"
895 "#     endif\n"
896 "#   else\n"
897 "#     ifdef USESHADOWMAPPCF\n"
898 "#      if defined(GL_ARB_texture_gather) || defined(GL_AMD_texture_texture4)\n"
899 "#       ifdef GL_ARB_texture_gather\n"
900 "#         define texval(x, y) textureGatherOffset(Texture_ShadowMap2D, center, ivec2(x, y))\n"
901 "#       else\n"
902 "#         define texval(x, y) texture4(Texture_ShadowMap2D, center + vec2(x, y)*ShadowMap_TextureScale)\n"
903 "#       endif\n"
904 "       vec2 offset = fract(shadowmaptc.xy - 0.5), center = (shadowmaptc.xy - offset)*ShadowMap_TextureScale;\n"
905 "#       if USESHADOWMAPPCF > 1\n"
906 "   vec4 group1 = step(shadowmaptc.z, texval(-2.0, -2.0));\n"
907 "   vec4 group2 = step(shadowmaptc.z, texval( 0.0, -2.0));\n"
908 "   vec4 group3 = step(shadowmaptc.z, texval( 2.0, -2.0));\n"
909 "   vec4 group4 = step(shadowmaptc.z, texval(-2.0,  0.0));\n"
910 "   vec4 group5 = step(shadowmaptc.z, texval( 0.0,  0.0));\n"
911 "   vec4 group6 = step(shadowmaptc.z, texval( 2.0,  0.0));\n"
912 "   vec4 group7 = step(shadowmaptc.z, texval(-2.0,  2.0));\n"
913 "   vec4 group8 = step(shadowmaptc.z, texval( 0.0,  2.0));\n"
914 "   vec4 group9 = step(shadowmaptc.z, texval( 2.0,  2.0));\n"
915 "       vec4 locols = vec4(group1.ab, group3.ab);\n"
916 "       vec4 hicols = vec4(group7.rg, group9.rg);\n"
917 "       locols.yz += group2.ab;\n"
918 "       hicols.yz += group8.rg;\n"
919 "       vec4 midcols = vec4(group1.rg, group3.rg) + vec4(group7.ab, group9.ab) +\n"
920 "                               vec4(group4.rg, group6.rg) + vec4(group4.ab, group6.ab) +\n"
921 "                               mix(locols, hicols, offset.y);\n"
922 "       vec4 cols = group5 + vec4(group2.rg, group8.ab);\n"
923 "       cols.xyz += mix(midcols.xyz, midcols.yzw, offset.x);\n"
924 "       f = dot(cols, vec4(1.0/25.0));\n"
925 "#      else\n"
926 "       vec4 group1 = step(shadowmaptc.z, texval(-1.0, -1.0));\n"
927 "       vec4 group2 = step(shadowmaptc.z, texval( 1.0, -1.0));\n"
928 "       vec4 group3 = step(shadowmaptc.z, texval(-1.0,  1.0));\n"
929 "       vec4 group4 = step(shadowmaptc.z, texval( 1.0,  1.0));\n"
930 "       vec4 cols = vec4(group1.rg, group2.rg) + vec4(group3.ab, group4.ab) +\n"
931 "                               mix(vec4(group1.ab, group2.ab), vec4(group3.rg, group4.rg), offset.y);\n"
932 "       f = dot(mix(cols.xyz, cols.yzw, offset.x), vec3(1.0/9.0));\n"
933 "#       endif\n"
934 "#      else\n"
935 "#       ifdef GL_EXT_gpu_shader4\n"
936 "#         define texval(x, y) dp_textureOffset(Texture_ShadowMap2D, center, x, y).r\n"
937 "#       else\n"
938 "#         define texval(x, y) dp_texture2D(Texture_ShadowMap2D, center + vec2(x, y)*ShadowMap_TextureScale).r  \n"
939 "#       endif\n"
940 "#       if USESHADOWMAPPCF > 1\n"
941 "       vec2 center = shadowmaptc.xy - 0.5, offset = fract(center);\n"
942 "       center *= ShadowMap_TextureScale;\n"
943 "       vec4 row1 = step(shadowmaptc.z, vec4(texval(-1.0, -1.0), texval( 0.0, -1.0), texval( 1.0, -1.0), texval( 2.0, -1.0)));\n"
944 "       vec4 row2 = step(shadowmaptc.z, vec4(texval(-1.0,  0.0), texval( 0.0,  0.0), texval( 1.0,  0.0), texval( 2.0,  0.0)));\n"
945 "       vec4 row3 = step(shadowmaptc.z, vec4(texval(-1.0,  1.0), texval( 0.0,  1.0), texval( 1.0,  1.0), texval( 2.0,  1.0)));\n"
946 "       vec4 row4 = step(shadowmaptc.z, vec4(texval(-1.0,  2.0), texval( 0.0,  2.0), texval( 1.0,  2.0), texval( 2.0,  2.0)));\n"
947 "       vec4 cols = row2 + row3 + mix(row1, row4, offset.y);\n"
948 "       f = dot(mix(cols.xyz, cols.yzw, offset.x), vec3(1.0/9.0));\n"
949 "#       else\n"
950 "       vec2 center = shadowmaptc.xy*ShadowMap_TextureScale, offset = fract(shadowmaptc.xy);\n"
951 "       vec3 row1 = step(shadowmaptc.z, vec3(texval(-1.0, -1.0), texval( 0.0, -1.0), texval( 1.0, -1.0)));\n"
952 "       vec3 row2 = step(shadowmaptc.z, vec3(texval(-1.0,  0.0), texval( 0.0,  0.0), texval( 1.0,  0.0)));\n"
953 "       vec3 row3 = step(shadowmaptc.z, vec3(texval(-1.0,  1.0), texval( 0.0,  1.0), texval( 1.0,  1.0)));\n"
954 "       vec3 cols = row2 + mix(row1, row3, offset.y);\n"
955 "       f = dot(mix(cols.xy, cols.yz, offset.x), vec2(0.25));\n"
956 "#       endif\n"
957 "#      endif\n"
958 "#     else\n"
959 "       f = step(shadowmaptc.z, dp_texture2D(Texture_ShadowMap2D, shadowmaptc.xy*ShadowMap_TextureScale).r);\n"
960 "#     endif\n"
961 "#   endif\n"
962 "#  endif\n"
963 "#  ifdef USESHADOWMAPORTHO\n"
964 "       return mix(ShadowMap_Parameters.w, 1.0, f);\n"
965 "#  else\n"
966 "       return f;\n"
967 "#  endif\n"
968 "}\n"
969 "# endif\n"
970 "#endif // !defined(MODE_LIGHTSOURCE) && !defined(MODE_DEFERREDLIGHTSOURCE) && !defined(USESHADOWMAPORTHO)\n"
971 "#endif // FRAGMENT_SHADER\n"
972 "\n"
973 "\n"
974 "\n"
975 "\n"
976 "#ifdef MODE_DEFERREDGEOMETRY\n"
977 "#ifdef VERTEX_SHADER\n"
978 "uniform highp mat4 TexMatrix;\n"
979 "#ifdef USEVERTEXTEXTUREBLEND\n"
980 "uniform highp mat4 BackgroundTexMatrix;\n"
981 "#endif\n"
982 "uniform highp mat4 ModelViewMatrix;\n"
983 "void main(void)\n"
984 "{\n"
985 "       TexCoordSurfaceLightmap = vec4((TexMatrix * Attrib_TexCoord0).xy, 0.0, 0.0);\n"
986 "#ifdef USEVERTEXTEXTUREBLEND\n"
987 "       VertexColor = Attrib_Color;\n"
988 "       TexCoord2 = vec2(BackgroundTexMatrix * Attrib_TexCoord0);\n"
989 "#endif\n"
990 "\n"
991 "       // transform unnormalized eye direction into tangent space\n"
992 "#ifdef USEOFFSETMAPPING\n"
993 "       vec3 EyeRelative = EyePosition - Attrib_Position.xyz;\n"
994 "       EyeVectorFogDepth.x = dot(EyeRelative, Attrib_TexCoord1.xyz);\n"
995 "       EyeVectorFogDepth.y = dot(EyeRelative, Attrib_TexCoord2.xyz);\n"
996 "       EyeVectorFogDepth.z = dot(EyeRelative, Attrib_TexCoord3.xyz);\n"
997 "       EyeVectorFogDepth.w = 0.0;\n"
998 "#endif\n"
999 "\n"
1000 "       VectorS = (ModelViewMatrix * vec4(Attrib_TexCoord1.xyz, 0));\n"
1001 "       VectorT = (ModelViewMatrix * vec4(Attrib_TexCoord2.xyz, 0));\n"
1002 "       VectorR = (ModelViewMatrix * vec4(Attrib_TexCoord3.xyz, 0));\n"
1003 "       gl_Position = ModelViewProjectionMatrix * Attrib_Position;\n"
1004 "#ifdef USETRIPPY\n"
1005 "       gl_Position = TrippyVertex(gl_Position);\n"
1006 "#endif\n"
1007 "       Depth = (ModelViewMatrix * Attrib_Position).z;\n"
1008 "}\n"
1009 "#endif // VERTEX_SHADER\n"
1010 "\n"
1011 "#ifdef FRAGMENT_SHADER\n"
1012 "void main(void)\n"
1013 "{\n"
1014 "#ifdef USEOFFSETMAPPING\n"
1015 "       // apply offsetmapping\n"
1016 "       vec2 dPdx = dp_offsetmapping_dFdx(TexCoordSurfaceLightmap.xy);\n"
1017 "       vec2 dPdy = dp_offsetmapping_dFdy(TexCoordSurfaceLightmap.xy);\n"
1018 "       vec2 TexCoordOffset = OffsetMapping(TexCoordSurfaceLightmap.xy, dPdx, dPdy);\n"
1019 "# define offsetMappedTexture2D(t) dp_textureGrad(t, TexCoordOffset, dPdx, dPdy)\n"
1020 "#else\n"
1021 "# define offsetMappedTexture2D(t) dp_texture2D(t, TexCoordSurfaceLightmap.xy)\n"
1022 "#endif\n"
1023 "\n"
1024 "#ifdef USEALPHAKILL\n"
1025 "       if (offsetMappedTexture2D(Texture_Color).a < 0.5)\n"
1026 "               discard;\n"
1027 "#endif\n"
1028 "\n"
1029 "#ifdef USEVERTEXTEXTUREBLEND\n"
1030 "       float alpha = offsetMappedTexture2D(Texture_Color).a;\n"
1031 "       float terrainblend = clamp(float(VertexColor.a) * alpha * 2.0 - 0.5, float(0.0), float(1.0));\n"
1032 "       //float terrainblend = min(float(VertexColor.a) * alpha * 2.0, float(1.0));\n"
1033 "       //float terrainblend = float(VertexColor.a) * alpha > 0.5;\n"
1034 "#endif\n"
1035 "\n"
1036 "#ifdef USEVERTEXTEXTUREBLEND\n"
1037 "       vec3 surfacenormal = mix(vec3(dp_texture2D(Texture_SecondaryNormal, TexCoord2)), vec3(offsetMappedTexture2D(Texture_Normal)), terrainblend) - vec3(0.5, 0.5, 0.5);\n"
1038 "       float a = mix(dp_texture2D(Texture_SecondaryGloss, TexCoord2).a, offsetMappedTexture2D(Texture_Gloss).a, terrainblend);\n"
1039 "#else\n"
1040 "       vec3 surfacenormal = vec3(offsetMappedTexture2D(Texture_Normal)) - vec3(0.5, 0.5, 0.5);\n"
1041 "       float a = offsetMappedTexture2D(Texture_Gloss).a;\n"
1042 "#endif\n"
1043 "\n"
1044 "       vec3 pixelnormal = normalize(surfacenormal.x * VectorS.xyz + surfacenormal.y * VectorT.xyz + surfacenormal.z * VectorR.xyz);\n"
1045 "       dp_FragColor = vec4(pixelnormal.x, pixelnormal.y, Depth, a);\n"
1046 "}\n"
1047 "#endif // FRAGMENT_SHADER\n"
1048 "#else // !MODE_DEFERREDGEOMETRY\n"
1049 "\n"
1050 "\n"
1051 "\n"
1052 "\n"
1053 "#ifdef MODE_DEFERREDLIGHTSOURCE\n"
1054 "#ifdef VERTEX_SHADER\n"
1055 "uniform highp mat4 ModelViewMatrix;\n"
1056 "void main(void)\n"
1057 "{\n"
1058 "       ModelViewPosition = ModelViewMatrix * Attrib_Position;\n"
1059 "       gl_Position = ModelViewProjectionMatrix * Attrib_Position;\n"
1060 "}\n"
1061 "#endif // VERTEX_SHADER\n"
1062 "\n"
1063 "#ifdef FRAGMENT_SHADER\n"
1064 "uniform highp mat4 ViewToLight;\n"
1065 "// ScreenToDepth = vec2(Far / (Far - Near), Far * Near / (Near - Far));\n"
1066 "uniform highp vec2 ScreenToDepth;\n"
1067 "uniform myhalf3 DeferredColor_Ambient;\n"
1068 "uniform myhalf3 DeferredColor_Diffuse;\n"
1069 "#ifdef USESPECULAR\n"
1070 "uniform myhalf3 DeferredColor_Specular;\n"
1071 "uniform myhalf SpecularPower;\n"
1072 "#endif\n"
1073 "uniform myhalf2 PixelToScreenTexCoord;\n"
1074 "void main(void)\n"
1075 "{\n"
1076 "       // calculate viewspace pixel position\n"
1077 "       vec2 ScreenTexCoord = gl_FragCoord.xy * PixelToScreenTexCoord;\n"
1078 "       vec3 position;\n"
1079 "       // get the geometry information (depth, normal, specular exponent)\n"
1080 "       myhalf4 normalmap = dp_texture2D(Texture_ScreenNormalMap, ScreenTexCoord);\n"
1081 "       // decode viewspace pixel normal\n"
1082 "//     myhalf3 surfacenormal = normalize(normalmap.rgb - cast_myhalf3(0.5,0.5,0.5));\n"
1083 "       myhalf3 surfacenormal = myhalf3(normalmap.rg, sqrt(1.0-dot(normalmap.rg, normalmap.rg)));\n"
1084 "       // decode viewspace pixel position\n"
1085 "//     position.z = decodedepthmacro(dp_texture2D(Texture_ScreenDepth, ScreenTexCoord));\n"
1086 "       position.z = normalmap.b;\n"
1087 "//     position.z = ScreenToDepth.y / (dp_texture2D(Texture_ScreenDepth, ScreenTexCoord).r + ScreenToDepth.x);\n"
1088 "       position.xy = ModelViewPosition.xy * (position.z / ModelViewPosition.z);\n"
1089 "\n"
1090 "       // now do the actual shading\n"
1091 "       // surfacenormal = pixel normal in viewspace\n"
1092 "       // LightVector = pixel to light in viewspace\n"
1093 "       // CubeVector = pixel in lightspace\n"
1094 "       // eyenormal = pixel to view direction in viewspace\n"
1095 "       vec3 CubeVector = vec3(ViewToLight * vec4(position,1));\n"
1096 "       myhalf fade = cast_myhalf(dp_texture2D(Texture_Attenuation, vec2(length(CubeVector), 0.0)));\n"
1097 "#ifdef USEDIFFUSE\n"
1098 "       // calculate diffuse shading\n"
1099 "       myhalf3 lightnormal = cast_myhalf3(normalize(LightPosition - position));\n"
1100 "SHADEDIFFUSE\n"
1101 "#endif\n"
1102 "#ifdef USESPECULAR\n"
1103 "       // calculate directional shading\n"
1104 "       myhalf3 eyenormal = -normalize(cast_myhalf3(position));\n"
1105 "SHADESPECULAR(SpecularPower * normalmap.a)\n"
1106 "#endif\n"
1107 "\n"
1108 "#if defined(USESHADOWMAP2D)\n"
1109 "       fade *= ShadowMapCompare(CubeVector);\n"
1110 "#endif\n"
1111 "\n"
1112 "#ifdef USESPECULAR\n"
1113 "       gl_FragData[0] = vec4((DeferredColor_Ambient + DeferredColor_Diffuse * diffuse) * fade, 1.0);\n"
1114 "       gl_FragData[1] = vec4(DeferredColor_Specular * (specular * fade), 1.0);\n"
1115 "# ifdef USECUBEFILTER\n"
1116 "       vec3 cubecolor = dp_textureCube(Texture_Cube, CubeVector).rgb;\n"
1117 "       gl_FragData[0].rgb *= cubecolor;\n"
1118 "       gl_FragData[1].rgb *= cubecolor;\n"
1119 "# endif\n"
1120 "#else\n"
1121 "# ifdef USEDIFFUSE\n"
1122 "       gl_FragColor = vec4((DeferredColor_Ambient + DeferredColor_Diffuse * diffuse) * fade, 1.0);\n"
1123 "# else\n"
1124 "       gl_FragColor = vec4(DeferredColor_Ambient * fade, 1.0);\n"
1125 "# endif\n"
1126 "# ifdef USECUBEFILTER\n"
1127 "       vec3 cubecolor = dp_textureCube(Texture_Cube, CubeVector).rgb;\n"
1128 "       gl_FragColor.rgb *= cubecolor;\n"
1129 "# endif\n"
1130 "#endif\n"
1131 "}\n"
1132 "#endif // FRAGMENT_SHADER\n"
1133 "#else // !MODE_DEFERREDLIGHTSOURCE\n"
1134 "\n"
1135 "\n"
1136 "\n"
1137 "\n"
1138 "#ifdef VERTEX_SHADER\n"
1139 "uniform highp mat4 TexMatrix;\n"
1140 "#ifdef USEVERTEXTEXTUREBLEND\n"
1141 "uniform highp mat4 BackgroundTexMatrix;\n"
1142 "#endif\n"
1143 "#ifdef MODE_LIGHTSOURCE\n"
1144 "uniform highp mat4 ModelToLight;\n"
1145 "#endif\n"
1146 "#ifdef USESHADOWMAPORTHO\n"
1147 "uniform highp mat4 ShadowMapMatrix;\n"
1148 "#endif\n"
1149 "#ifdef USEBOUNCEGRID\n"
1150 "uniform highp mat4 BounceGridMatrix;\n"
1151 "#endif\n"
1152 "void main(void)\n"
1153 "{\n"
1154 "#if defined(MODE_VERTEXCOLOR) || defined(USEVERTEXTEXTUREBLEND) || defined(MODE_LIGHTDIRECTIONMAP_FORCED_VERTEXCOLOR) || defined(USEALPHAGENVERTEX)\n"
1155 "       VertexColor = Attrib_Color;\n"
1156 "#endif\n"
1157 "       // copy the surface texcoord\n"
1158 "#ifdef USELIGHTMAP\n"
1159 "       TexCoordSurfaceLightmap = vec4((TexMatrix * Attrib_TexCoord0).xy, Attrib_TexCoord4.xy);\n"
1160 "#else\n"
1161 "       TexCoordSurfaceLightmap = vec4((TexMatrix * Attrib_TexCoord0).xy, 0.0, 0.0);\n"
1162 "#endif\n"
1163 "#ifdef USEVERTEXTEXTUREBLEND\n"
1164 "       TexCoord2 = vec2(BackgroundTexMatrix * Attrib_TexCoord0);\n"
1165 "#endif\n"
1166 "\n"
1167 "#ifdef USEBOUNCEGRID\n"
1168 "       BounceGridTexCoord = vec3(BounceGridMatrix * Attrib_Position);\n"
1169 "#ifdef USEBOUNCEGRIDDIRECTIONAL\n"
1170 "       BounceGridTexCoord.z *= 0.125;\n"
1171 "#endif\n"
1172 "#endif\n"
1173 "\n"
1174 "#ifdef MODE_LIGHTSOURCE\n"
1175 "       // transform vertex position into light attenuation/cubemap space\n"
1176 "       // (-1 to +1 across the light box)\n"
1177 "       CubeVector = vec3(ModelToLight * Attrib_Position);\n"
1178 "\n"
1179 "# ifdef USEDIFFUSE\n"
1180 "       // transform unnormalized light direction into tangent space\n"
1181 "       // (we use unnormalized to ensure that it interpolates correctly and then\n"
1182 "       //  normalize it per pixel)\n"
1183 "       vec3 lightminusvertex = LightPosition - Attrib_Position.xyz;\n"
1184 "       LightVector.x = dot(lightminusvertex, Attrib_TexCoord1.xyz);\n"
1185 "       LightVector.y = dot(lightminusvertex, Attrib_TexCoord2.xyz);\n"
1186 "       LightVector.z = dot(lightminusvertex, Attrib_TexCoord3.xyz);\n"
1187 "# endif\n"
1188 "#endif\n"
1189 "\n"
1190 "#if defined(MODE_LIGHTDIRECTION) && defined(USEDIFFUSE)\n"
1191 "       LightVector.x = dot(LightDir, Attrib_TexCoord1.xyz);\n"
1192 "       LightVector.y = dot(LightDir, Attrib_TexCoord2.xyz);\n"
1193 "       LightVector.z = dot(LightDir, Attrib_TexCoord3.xyz);\n"
1194 "#endif\n"
1195 "\n"
1196 "       // transform unnormalized eye direction into tangent space\n"
1197 "#ifdef USEEYEVECTOR\n"
1198 "       vec3 EyeRelative = EyePosition - Attrib_Position.xyz;\n"
1199 "       EyeVectorFogDepth.x = dot(EyeRelative, Attrib_TexCoord1.xyz);\n"
1200 "       EyeVectorFogDepth.y = dot(EyeRelative, Attrib_TexCoord2.xyz);\n"
1201 "       EyeVectorFogDepth.z = dot(EyeRelative, Attrib_TexCoord3.xyz);\n"
1202 "#ifdef USEFOG\n"
1203 "       EyeVectorFogDepth.w = dot(FogPlane, Attrib_Position);\n"
1204 "#else\n"
1205 "       EyeVectorFogDepth.w = 0.0;\n"
1206 "#endif\n"
1207 "#endif\n"
1208 "\n"
1209 "\n"
1210 "#if defined(MODE_LIGHTDIRECTIONMAP_MODELSPACE) || defined(USEREFLECTCUBE) || defined(USEBOUNCEGRIDDIRECTIONAL)\n"
1211 "# ifdef USEFOG\n"
1212 "       VectorS = vec4(Attrib_TexCoord1.xyz, EyePosition.x - Attrib_Position.x);\n"
1213 "       VectorT = vec4(Attrib_TexCoord2.xyz, EyePosition.y - Attrib_Position.y);\n"
1214 "       VectorR = vec4(Attrib_TexCoord3.xyz, EyePosition.z - Attrib_Position.z);\n"
1215 "# else\n"
1216 "       VectorS = vec4(Attrib_TexCoord1, 0);\n"
1217 "       VectorT = vec4(Attrib_TexCoord2, 0);\n"
1218 "       VectorR = vec4(Attrib_TexCoord3, 0);\n"
1219 "# endif\n"
1220 "#else\n"
1221 "# ifdef USEFOG\n"
1222 "       EyeVectorModelSpace = EyePosition - Attrib_Position.xyz;\n"
1223 "# endif\n"
1224 "#endif\n"
1225 "\n"
1226 "       // transform vertex to clipspace (post-projection, but before perspective divide by W occurs)\n"
1227 "       gl_Position = ModelViewProjectionMatrix * Attrib_Position;\n"
1228 "\n"
1229 "#ifdef USESHADOWMAPORTHO\n"
1230 "       ShadowMapTC = vec3(ShadowMapMatrix * gl_Position);\n"
1231 "#endif\n"
1232 "\n"
1233 "#ifdef USEREFLECTION\n"
1234 "       ModelViewProjectionPosition = gl_Position;\n"
1235 "#endif\n"
1236 "#ifdef USETRIPPY\n"
1237 "       gl_Position = TrippyVertex(gl_Position);\n"
1238 "#endif\n"
1239 "}\n"
1240 "#endif // VERTEX_SHADER\n"
1241 "\n"
1242 "\n"
1243 "\n"
1244 "\n"
1245 "#ifdef FRAGMENT_SHADER\n"
1246 "#ifdef USEDEFERREDLIGHTMAP\n"
1247 "uniform myhalf2 PixelToScreenTexCoord;\n"
1248 "uniform myhalf3 DeferredMod_Diffuse;\n"
1249 "uniform myhalf3 DeferredMod_Specular;\n"
1250 "#endif\n"
1251 "uniform myhalf3 Color_Ambient;\n"
1252 "uniform myhalf3 Color_Diffuse;\n"
1253 "uniform myhalf3 Color_Specular;\n"
1254 "uniform myhalf SpecularPower;\n"
1255 "#ifdef USEGLOW\n"
1256 "uniform myhalf3 Color_Glow;\n"
1257 "#endif\n"
1258 "uniform myhalf Alpha;\n"
1259 "#ifdef USEREFLECTION\n"
1260 "uniform mediump vec4 DistortScaleRefractReflect;\n"
1261 "uniform mediump vec4 ScreenScaleRefractReflect;\n"
1262 "uniform mediump vec4 ScreenCenterRefractReflect;\n"
1263 "uniform mediump vec4 ReflectColor;\n"
1264 "#endif\n"
1265 "#ifdef USEREFLECTCUBE\n"
1266 "uniform highp mat4 ModelToReflectCube;\n"
1267 "uniform sampler2D Texture_ReflectMask;\n"
1268 "uniform samplerCube Texture_ReflectCube;\n"
1269 "#endif\n"
1270 "#ifdef MODE_LIGHTDIRECTION\n"
1271 "uniform myhalf3 LightColor;\n"
1272 "#endif\n"
1273 "#ifdef MODE_LIGHTSOURCE\n"
1274 "uniform myhalf3 LightColor;\n"
1275 "#endif\n"
1276 "#ifdef USEBOUNCEGRID\n"
1277 "uniform sampler3D Texture_BounceGrid;\n"
1278 "uniform float BounceGridIntensity;\n"
1279 "uniform highp mat4 BounceGridMatrix;\n"
1280 "#endif\n"
1281 "uniform highp float ClientTime;\n"
1282 "#ifdef USENORMALMAPSCROLLBLEND\n"
1283 "uniform highp vec2 NormalmapScrollBlend;\n"
1284 "#endif\n"
1285 "void main(void)\n"
1286 "{\n"
1287 "#ifdef USEOFFSETMAPPING\n"
1288 "       // apply offsetmapping\n"
1289 "       vec2 dPdx = dp_offsetmapping_dFdx(TexCoordSurfaceLightmap.xy);\n"
1290 "       vec2 dPdy = dp_offsetmapping_dFdy(TexCoordSurfaceLightmap.xy);\n"
1291 "       vec2 TexCoordOffset = OffsetMapping(TexCoordSurfaceLightmap.xy, dPdx, dPdy);\n"
1292 "# define offsetMappedTexture2D(t) dp_textureGrad(t, TexCoordOffset, dPdx, dPdy)\n"
1293 "# define TexCoord TexCoordOffset\n"
1294 "#else\n"
1295 "# define offsetMappedTexture2D(t) dp_texture2D(t, TexCoordSurfaceLightmap.xy)\n"
1296 "# define TexCoord TexCoordSurfaceLightmap.xy\n"
1297 "#endif\n"
1298 "\n"
1299 "       // combine the diffuse textures (base, pants, shirt)\n"
1300 "       myhalf4 color = cast_myhalf4(offsetMappedTexture2D(Texture_Color));\n"
1301 "#ifdef USEALPHAKILL\n"
1302 "       if (color.a < 0.5)\n"
1303 "               discard;\n"
1304 "#endif\n"
1305 "       color.a *= Alpha;\n"
1306 "#ifdef USECOLORMAPPING\n"
1307 "       color.rgb += cast_myhalf3(offsetMappedTexture2D(Texture_Pants)) * Color_Pants + cast_myhalf3(offsetMappedTexture2D(Texture_Shirt)) * Color_Shirt;\n"
1308 "#endif\n"
1309 "#ifdef USEVERTEXTEXTUREBLEND\n"
1310 "#ifdef USEBOTHALPHAS\n"
1311 "       myhalf4 color2 = cast_myhalf4(dp_texture2D(Texture_SecondaryColor, TexCoord2));\n"
1312 "       myhalf terrainblend = clamp(cast_myhalf(VertexColor.a) * color.a, cast_myhalf(1.0 - color2.a), cast_myhalf(1.0));\n"
1313 "       color.rgb = mix(color2.rgb, color.rgb, terrainblend);\n"
1314 "#else\n"
1315 "       myhalf terrainblend = clamp(cast_myhalf(VertexColor.a) * color.a * 2.0 - 0.5, cast_myhalf(0.0), cast_myhalf(1.0));\n"
1316 "       //myhalf terrainblend = min(cast_myhalf(VertexColor.a) * color.a * 2.0, cast_myhalf(1.0));\n"
1317 "       //myhalf terrainblend = cast_myhalf(VertexColor.a) * color.a > 0.5;\n"
1318 "       color.rgb = mix(cast_myhalf3(dp_texture2D(Texture_SecondaryColor, TexCoord2)), color.rgb, terrainblend);\n"
1319 "#endif\n"
1320 "       color.a = 1.0;\n"
1321 "       //color = mix(cast_myhalf4(1, 0, 0, 1), color, terrainblend);\n"
1322 "#endif\n"
1323 "#ifdef USEALPHAGENVERTEX\n"
1324 "       color.a *= VertexColor.a;\n"
1325 "#endif\n"
1326 "\n"
1327 "       // get the surface normal\n"
1328 "#ifdef USEVERTEXTEXTUREBLEND\n"
1329 "       myhalf3 surfacenormal = normalize(mix(cast_myhalf3(dp_texture2D(Texture_SecondaryNormal, TexCoord2)), cast_myhalf3(offsetMappedTexture2D(Texture_Normal)), terrainblend) - cast_myhalf3(0.5, 0.5, 0.5));\n"
1330 "#else\n"
1331 "       myhalf3 surfacenormal = normalize(cast_myhalf3(offsetMappedTexture2D(Texture_Normal)) - cast_myhalf3(0.5, 0.5, 0.5));\n"
1332 "#endif\n"
1333 "\n"
1334 "       // get the material colors\n"
1335 "       myhalf3 diffusetex = color.rgb;\n"
1336 "#if defined(USESPECULAR) || defined(USEDEFERREDLIGHTMAP)\n"
1337 "# ifdef USEVERTEXTEXTUREBLEND\n"
1338 "       myhalf4 glosstex = mix(cast_myhalf4(dp_texture2D(Texture_SecondaryGloss, TexCoord2)), cast_myhalf4(offsetMappedTexture2D(Texture_Gloss)), terrainblend);\n"
1339 "# else\n"
1340 "       myhalf4 glosstex = cast_myhalf4(offsetMappedTexture2D(Texture_Gloss));\n"
1341 "# endif\n"
1342 "#endif\n"
1343 "\n"
1344 "#ifdef USEREFLECTCUBE\n"
1345 "       vec3 TangentReflectVector = reflect(-EyeVectorFogDepth.xyz, surfacenormal);\n"
1346 "       vec3 ModelReflectVector = TangentReflectVector.x * VectorS.xyz + TangentReflectVector.y * VectorT.xyz + TangentReflectVector.z * VectorR.xyz;\n"
1347 "       vec3 ReflectCubeTexCoord = vec3(ModelToReflectCube * vec4(ModelReflectVector, 0));\n"
1348 "       diffusetex += cast_myhalf3(offsetMappedTexture2D(Texture_ReflectMask)) * cast_myhalf3(dp_textureCube(Texture_ReflectCube, ReflectCubeTexCoord));\n"
1349 "#endif\n"
1350 "\n"
1351 "#ifdef USESPECULAR\n"
1352 "       myhalf3 eyenormal = normalize(cast_myhalf3(EyeVectorFogDepth.xyz));\n"
1353 "#endif\n"
1354 "\n"
1355 "\n"
1356 "\n"
1357 "\n"
1358 "#ifdef MODE_LIGHTSOURCE\n"
1359 "       // light source\n"
1360 "#ifdef USEDIFFUSE\n"
1361 "       myhalf3 lightnormal = cast_myhalf3(normalize(LightVector));\n"
1362 "SHADEDIFFUSE\n"
1363 "       color.rgb = diffusetex * (Color_Ambient + diffuse * Color_Diffuse);\n"
1364 "#ifdef USESPECULAR\n"
1365 "SHADESPECULAR(SpecularPower * glosstex.a)\n"
1366 "       color.rgb += glosstex.rgb * (specular * Color_Specular);\n"
1367 "#endif\n"
1368 "#else\n"
1369 "       color.rgb = diffusetex * Color_Ambient;\n"
1370 "#endif\n"
1371 "       color.rgb *= LightColor;\n"
1372 "       color.rgb *= cast_myhalf(dp_texture2D(Texture_Attenuation, vec2(length(CubeVector), 0.0)));\n"
1373 "#if defined(USESHADOWMAP2D)\n"
1374 "       color.rgb *= ShadowMapCompare(CubeVector);\n"
1375 "#endif\n"
1376 "# ifdef USECUBEFILTER\n"
1377 "       color.rgb *= cast_myhalf3(dp_textureCube(Texture_Cube, CubeVector));\n"
1378 "# endif\n"
1379 "#endif // MODE_LIGHTSOURCE\n"
1380 "\n"
1381 "\n"
1382 "\n"
1383 "\n"
1384 "#ifdef MODE_LIGHTDIRECTION\n"
1385 "       #define SHADING\n"
1386 "       #ifdef USEDIFFUSE\n"
1387 "               myhalf3 lightnormal = cast_myhalf3(normalize(LightVector));\n"
1388 "       #endif\n"
1389 "       #define lightcolor LightColor\n"
1390 "#endif // MODE_LIGHTDIRECTION\n"
1391 "#ifdef MODE_LIGHTDIRECTIONMAP_MODELSPACE\n"
1392 "   #define SHADING\n"
1393 "       // deluxemap lightmapping using light vectors in modelspace (q3map2 -light -deluxe)\n"
1394 "       myhalf3 lightnormal_modelspace = cast_myhalf3(dp_texture2D(Texture_Deluxemap, TexCoordSurfaceLightmap.zw)) * 2.0 + cast_myhalf3(-1.0, -1.0, -1.0);\n"
1395 "       myhalf3 lightcolor = cast_myhalf3(dp_texture2D(Texture_Lightmap, TexCoordSurfaceLightmap.zw));\n"
1396 "       // convert modelspace light vector to tangentspace\n"
1397 "       myhalf3 lightnormal;\n"
1398 "       lightnormal.x = dot(lightnormal_modelspace, cast_myhalf3(VectorS));\n"
1399 "       lightnormal.y = dot(lightnormal_modelspace, cast_myhalf3(VectorT));\n"
1400 "       lightnormal.z = dot(lightnormal_modelspace, cast_myhalf3(VectorR));\n"
1401 "       lightnormal = normalize(lightnormal); // VectorS/T/R are not always perfectly normalized, and EXACTSPECULARMATH is very picky about this\n"
1402 "       // calculate directional shading (and undoing the existing angle attenuation on the lightmap by the division)\n"
1403 "       // note that q3map2 is too stupid to calculate proper surface normals when q3map_nonplanar\n"
1404 "       // is used (the lightmap and deluxemap coords correspond to virtually random coordinates\n"
1405 "       // on that luxel, and NOT to its center, because recursive triangle subdivision is used\n"
1406 "       // to map the luxels to coordinates on the draw surfaces), which also causes\n"
1407 "       // deluxemaps to be wrong because light contributions from the wrong side of the surface\n"
1408 "       // are added up. To prevent divisions by zero or strong exaggerations, a max()\n"
1409 "       // nudge is done here at expense of some additional fps. This is ONLY needed for\n"
1410 "       // deluxemaps, tangentspace deluxemap avoid this problem by design.\n"
1411 "       lightcolor *= 1.0 / max(0.25, lightnormal.z);\n"
1412 "#endif // MODE_LIGHTDIRECTIONMAP_MODELSPACE\n"
1413 "#ifdef MODE_LIGHTDIRECTIONMAP_TANGENTSPACE\n"
1414 "   #define SHADING\n"
1415 "       // deluxemap lightmapping using light vectors in tangentspace (hmap2 -light)\n"
1416 "       myhalf3 lightnormal = cast_myhalf3(dp_texture2D(Texture_Deluxemap, TexCoordSurfaceLightmap.zw)) * 2.0 + cast_myhalf3(-1.0, -1.0, -1.0);\n"
1417 "       myhalf3 lightcolor = cast_myhalf3(dp_texture2D(Texture_Lightmap, TexCoordSurfaceLightmap.zw));\n"
1418 "#endif\n"
1419 "#if defined(MODE_LIGHTDIRECTIONMAP_FORCED_LIGHTMAP) || defined(MODE_LIGHTDIRECTIONMAP_FORCED_VERTEXCOLOR)\n"
1420 "       #define SHADING\n"
1421 "       // forced deluxemap on lightmapped/vertexlit surfaces\n"
1422 "       myhalf3 lightnormal = cast_myhalf3(0.0, 0.0, 1.0);\n"
1423 "   #ifdef USELIGHTMAP\n"
1424 "               myhalf3 lightcolor = cast_myhalf3(dp_texture2D(Texture_Lightmap, TexCoordSurfaceLightmap.zw));\n"
1425 "   #else\n"
1426 "               myhalf3 lightcolor = cast_myhalf3(VertexColor.rgb);\n"
1427 "   #endif\n"
1428 "#endif\n"
1429 "#ifdef MODE_FAKELIGHT\n"
1430 "       #define SHADING\n"
1431 "       myhalf3 lightnormal = cast_myhalf3(normalize(EyeVectorFogDepth.xyz));\n"
1432 "       myhalf3 lightcolor = cast_myhalf3(1.0);\n"
1433 "#endif // MODE_FAKELIGHT\n"
1434 "\n"
1435 "\n"
1436 "\n"
1437 "\n"
1438 "#ifdef MODE_LIGHTMAP\n"
1439 "       color.rgb = diffusetex * (Color_Ambient + cast_myhalf3(dp_texture2D(Texture_Lightmap, TexCoordSurfaceLightmap.zw)) * Color_Diffuse);\n"
1440 "#endif // MODE_LIGHTMAP\n"
1441 "#ifdef MODE_VERTEXCOLOR\n"
1442 "       color.rgb = diffusetex * (Color_Ambient + cast_myhalf3(VertexColor.rgb) * Color_Diffuse);\n"
1443 "#endif // MODE_VERTEXCOLOR\n"
1444 "#ifdef MODE_FLATCOLOR\n"
1445 "       color.rgb = diffusetex * Color_Ambient;\n"
1446 "#endif // MODE_FLATCOLOR\n"
1447 "\n"
1448 "\n"
1449 "\n"
1450 "\n"
1451 "#ifdef SHADING\n"
1452 "# ifdef USEDIFFUSE\n"
1453 "SHADEDIFFUSE\n"
1454 "#  ifdef USESPECULAR\n"
1455 "SHADESPECULAR(SpecularPower * glosstex.a)\n"
1456 "       color.rgb = diffusetex * Color_Ambient + (diffusetex * Color_Diffuse * diffuse + glosstex.rgb * Color_Specular * specular) * lightcolor;\n"
1457 "#  else\n"
1458 "       color.rgb = diffusetex * (Color_Ambient + Color_Diffuse * diffuse * lightcolor);\n"
1459 "#  endif\n"
1460 "# else\n"
1461 "       color.rgb = diffusetex * Color_Ambient;\n"
1462 "# endif\n"
1463 "#endif\n"
1464 "\n"
1465 "#ifdef USESHADOWMAPORTHO\n"
1466 "       color.rgb *= ShadowMapCompare(ShadowMapTC);\n"
1467 "#endif\n"
1468 "\n"
1469 "#ifdef USEDEFERREDLIGHTMAP\n"
1470 "       vec2 ScreenTexCoord = gl_FragCoord.xy * PixelToScreenTexCoord;\n"
1471 "       color.rgb += diffusetex * cast_myhalf3(dp_texture2D(Texture_ScreenDiffuse, ScreenTexCoord)) * DeferredMod_Diffuse;\n"
1472 "       color.rgb += glosstex.rgb * cast_myhalf3(dp_texture2D(Texture_ScreenSpecular, ScreenTexCoord)) * DeferredMod_Specular;\n"
1473 "//     color.rgb = dp_texture2D(Texture_ScreenNormalMap, ScreenTexCoord).rgb * vec3(1.0, 1.0, 0.001);\n"
1474 "#endif\n"
1475 "\n"
1476 "#ifdef USEBOUNCEGRID\n"
1477 "#ifdef USEBOUNCEGRIDDIRECTIONAL\n"
1478 "//     myhalf4 bouncegrid_coeff1 = cast_myhalf4(dp_texture3D(Texture_BounceGrid, BounceGridTexCoord                        ));\n"
1479 "//     myhalf4 bouncegrid_coeff2 = cast_myhalf4(dp_texture3D(Texture_BounceGrid, BounceGridTexCoord + vec3(0.0, 0.0, 0.125))) * 2.0 + cast_myhalf4(-1.0, -1.0, -1.0, -1.0);\n"
1480 "       myhalf4 bouncegrid_coeff3 = cast_myhalf4(dp_texture3D(Texture_BounceGrid, BounceGridTexCoord + vec3(0.0, 0.0, 0.250)));\n"
1481 "       myhalf4 bouncegrid_coeff4 = cast_myhalf4(dp_texture3D(Texture_BounceGrid, BounceGridTexCoord + vec3(0.0, 0.0, 0.375)));\n"
1482 "       myhalf4 bouncegrid_coeff5 = cast_myhalf4(dp_texture3D(Texture_BounceGrid, BounceGridTexCoord + vec3(0.0, 0.0, 0.500)));\n"
1483 "       myhalf4 bouncegrid_coeff6 = cast_myhalf4(dp_texture3D(Texture_BounceGrid, BounceGridTexCoord + vec3(0.0, 0.0, 0.625)));\n"
1484 "       myhalf4 bouncegrid_coeff7 = cast_myhalf4(dp_texture3D(Texture_BounceGrid, BounceGridTexCoord + vec3(0.0, 0.0, 0.750)));\n"
1485 "       myhalf4 bouncegrid_coeff8 = cast_myhalf4(dp_texture3D(Texture_BounceGrid, BounceGridTexCoord + vec3(0.0, 0.0, 0.875)));\n"
1486 "       myhalf3 bouncegrid_dir = normalize(mat3(BounceGridMatrix) * (surfacenormal.x * VectorS.xyz + surfacenormal.y * VectorT.xyz + surfacenormal.z * VectorR.xyz));\n"
1487 "       myhalf3 bouncegrid_dirp = max(cast_myhalf3(0.0, 0.0, 0.0), bouncegrid_dir);\n"
1488 "       myhalf3 bouncegrid_dirn = max(cast_myhalf3(0.0, 0.0, 0.0), -bouncegrid_dir);\n"
1489 "//     bouncegrid_dirp  = bouncegrid_dirn = cast_myhalf3(1.0,1.0,1.0);\n"
1490 "       myhalf3 bouncegrid_light = cast_myhalf3(\n"
1491 "               dot(bouncegrid_coeff3.xyz, bouncegrid_dirp) + dot(bouncegrid_coeff6.xyz, bouncegrid_dirn),\n"
1492 "               dot(bouncegrid_coeff4.xyz, bouncegrid_dirp) + dot(bouncegrid_coeff7.xyz, bouncegrid_dirn),\n"
1493 "               dot(bouncegrid_coeff5.xyz, bouncegrid_dirp) + dot(bouncegrid_coeff8.xyz, bouncegrid_dirn));\n"
1494 "       color.rgb += diffusetex * bouncegrid_light * BounceGridIntensity;\n"
1495 "//     color.rgb = bouncegrid_dir.rgb * 0.5 + vec3(0.5, 0.5, 0.5);\n"
1496 "#else\n"
1497 "       color.rgb += diffusetex * cast_myhalf3(dp_texture3D(Texture_BounceGrid, BounceGridTexCoord)) * BounceGridIntensity;\n"
1498 "#endif\n"
1499 "#endif\n"
1500 "\n"
1501 "#ifdef USEGLOW\n"
1502 "#ifdef USEVERTEXTEXTUREBLEND\n"
1503 "       color.rgb += mix(cast_myhalf3(dp_texture2D(Texture_SecondaryGlow, TexCoord2)), cast_myhalf3(offsetMappedTexture2D(Texture_Glow)), terrainblend) * Color_Glow;\n"
1504 "#else\n"
1505 "       color.rgb += cast_myhalf3(offsetMappedTexture2D(Texture_Glow)) * Color_Glow;\n"
1506 "#endif\n"
1507 "#endif\n"
1508 "\n"
1509 "#ifdef USECELOUTLINES\n"
1510 "# ifdef USEDEFERREDLIGHTMAP\n"
1511 "//     vec2 ScreenTexCoord = gl_FragCoord.xy * PixelToScreenTexCoord;\n"
1512 "       vec4 ScreenTexCoordStep = vec4(PixelToScreenTexCoord.x, 0.0, 0.0, PixelToScreenTexCoord.y);\n"
1513 "       vec4 DepthNeighbors;\n"
1514 "\n"
1515 "       // enable to test ink on white geometry\n"
1516 "//     color.rgb = vec3(1.0, 1.0, 1.0);\n"
1517 "\n"
1518 "       // note: this seems to be negative\n"
1519 "       float DepthCenter = dp_texture2D(Texture_ScreenNormalMap, ScreenTexCoord).b;\n"
1520 "\n"
1521 "       // edge detect method\n"
1522 "//     DepthNeighbors.x = dp_texture2D(Texture_ScreenNormalMap, ScreenTexCoord - ScreenTexCoordStep.xy).b;\n"
1523 "//     DepthNeighbors.y = dp_texture2D(Texture_ScreenNormalMap, ScreenTexCoord + ScreenTexCoordStep.xy).b;\n"
1524 "//     DepthNeighbors.z = dp_texture2D(Texture_ScreenNormalMap, ScreenTexCoord + ScreenTexCoordStep.zw).b;\n"
1525 "//     DepthNeighbors.w = dp_texture2D(Texture_ScreenNormalMap, ScreenTexCoord - ScreenTexCoordStep.zw).b;\n"
1526 "//     float DepthAverage = dot(DepthNeighbors, vec4(0.25, 0.25, 0.25, 0.25));\n"
1527 "//     float DepthDelta = abs(dot(DepthNeighbors.xy, vec2(-1.0, 1.0))) + abs(dot(DepthNeighbors.zw, vec2(-1.0, 1.0)));\n"
1528 "//     color.rgb *= max(0.5, 1.0 - max(0.0, abs(DepthCenter - DepthAverage) - 0.2 * DepthDelta) / (0.01 + 0.2 * DepthDelta));\n"
1529 "//     color.rgb *= step(abs(DepthCenter - DepthAverage), 0.2 * DepthDelta); \n"
1530 "\n"
1531 "       // shadow method\n"
1532 "       float DepthScale1 = 4.0 / DepthCenter; // inner ink (shadow on object)\n"
1533 "//     float DepthScale1 = -4.0 / DepthCenter; // outer ink (shadow around object)\n"
1534 "//     float DepthScale1 = 0.003;\n"
1535 "       float DepthScale2 = DepthScale1 / 2.0;\n"
1536 "//     float DepthScale3 = DepthScale1 / 4.0;\n"
1537 "       float DepthBias1 = -DepthCenter * DepthScale1;\n"
1538 "       float DepthBias2 = -DepthCenter * DepthScale2;\n"
1539 "//     float DepthBias3 = -DepthCenter * DepthScale3;\n"
1540 "       float DepthShadow = max(0.0, dp_texture2D(Texture_ScreenNormalMap, ScreenTexCoord + PixelToScreenTexCoord * vec2(-1.0,  0.0)).b * DepthScale1 + DepthBias1)\n"
1541 "                         + max(0.0, dp_texture2D(Texture_ScreenNormalMap, ScreenTexCoord + PixelToScreenTexCoord * vec2( 1.0,  0.0)).b * DepthScale1 + DepthBias1)\n"
1542 "                         + max(0.0, dp_texture2D(Texture_ScreenNormalMap, ScreenTexCoord + PixelToScreenTexCoord * vec2( 0.0, -1.0)).b * DepthScale1 + DepthBias1)\n"
1543 "                         + max(0.0, dp_texture2D(Texture_ScreenNormalMap, ScreenTexCoord + PixelToScreenTexCoord * vec2( 0.0,  1.0)).b * DepthScale1 + DepthBias1)\n"
1544 "                         + max(0.0, dp_texture2D(Texture_ScreenNormalMap, ScreenTexCoord + PixelToScreenTexCoord * vec2(-2.0,  0.0)).b * DepthScale2 + DepthBias2)\n"
1545 "                         + max(0.0, dp_texture2D(Texture_ScreenNormalMap, ScreenTexCoord + PixelToScreenTexCoord * vec2( 2.0,  0.0)).b * DepthScale2 + DepthBias2)\n"
1546 "                         + max(0.0, dp_texture2D(Texture_ScreenNormalMap, ScreenTexCoord + PixelToScreenTexCoord * vec2( 0.0, -2.0)).b * DepthScale2 + DepthBias2)\n"
1547 "                         + max(0.0, dp_texture2D(Texture_ScreenNormalMap, ScreenTexCoord + PixelToScreenTexCoord * vec2( 0.0,  2.0)).b * DepthScale2 + DepthBias2)\n"
1548 "//                       + max(0.0, dp_texture2D(Texture_ScreenNormalMap, ScreenTexCoord + PixelToScreenTexCoord * vec2(-3.0,  0.0)).b * DepthScale3 + DepthBias3)\n"
1549 "//                       + max(0.0, dp_texture2D(Texture_ScreenNormalMap, ScreenTexCoord + PixelToScreenTexCoord * vec2( 3.0,  0.0)).b * DepthScale3 + DepthBias3)\n"
1550 "//                       + max(0.0, dp_texture2D(Texture_ScreenNormalMap, ScreenTexCoord + PixelToScreenTexCoord * vec2( 0.0, -3.0)).b * DepthScale3 + DepthBias3)\n"
1551 "//                       + max(0.0, dp_texture2D(Texture_ScreenNormalMap, ScreenTexCoord + PixelToScreenTexCoord * vec2( 0.0,  3.0)).b * DepthScale3 + DepthBias3)\n"
1552 "                         - 0.0;\n"
1553 "       color.rgb *= 1.0 - max(0.0, min(DepthShadow, 1.0));\n"
1554 "//     color.r = DepthCenter / -1024.0;\n"
1555 "# endif\n"
1556 "#endif\n"
1557 "\n"
1558 "#ifdef USEFOG\n"
1559 "       color.rgb = FogVertex(color);\n"
1560 "#endif\n"
1561 "\n"
1562 "       // reflection must come last because it already contains exactly the correct fog (the reflection render preserves camera distance from the plane, it only flips the side) and ContrastBoost/SceneBrightness\n"
1563 "#ifdef USEREFLECTION\n"
1564 "       vec4 ScreenScaleRefractReflectIW = ScreenScaleRefractReflect * (1.0 / ModelViewProjectionPosition.w);\n"
1565 "       //vec4 ScreenTexCoord = (ModelViewProjectionPosition.xyxy + normalize(cast_myhalf3(offsetMappedTexture2D(Texture_Normal)) - cast_myhalf3(0.5)).xyxy * DistortScaleRefractReflect * 100) * ScreenScaleRefractReflectIW + ScreenCenterRefractReflect;\n"
1566 "       vec2 SafeScreenTexCoord = ModelViewProjectionPosition.xy * ScreenScaleRefractReflectIW.zw + ScreenCenterRefractReflect.zw;\n"
1567 "       #ifdef USENORMALMAPSCROLLBLEND\n"
1568 "# ifdef USEOFFSETMAPPING\n"
1569 "               vec3 normal = dp_textureGrad(Texture_Normal, (TexCoord + vec2(0.08, 0.08)*ClientTime*NormalmapScrollBlend.x*0.5)*NormalmapScrollBlend.y, dPdx*NormalmapScrollBlend.y, dPdy*NormalmapScrollBlend.y).rgb - vec3(1.0);\n"
1570 "# else\n"
1571 "               vec3 normal = dp_texture2D(Texture_Normal, (TexCoord + vec2(0.08, 0.08)*ClientTime*NormalmapScrollBlend.x*0.5)*NormalmapScrollBlend.y).rgb - vec3(1.0);\n"
1572 "# endif\n"
1573 "               normal += dp_texture2D(Texture_Normal, (TexCoord + vec2(-0.06, -0.09)*ClientTime*NormalmapScrollBlend.x)*NormalmapScrollBlend.y*0.75).rgb;\n"
1574 "               vec2 ScreenTexCoord = SafeScreenTexCoord + vec3(normalize(cast_myhalf3(normal))).xy * DistortScaleRefractReflect.zw;\n"
1575 "       #else\n"
1576 "               vec2 ScreenTexCoord = SafeScreenTexCoord + vec3(normalize(cast_myhalf3(offsetMappedTexture2D(Texture_Normal)) - cast_myhalf3(0.5))).xy * DistortScaleRefractReflect.zw;\n"
1577 "       #endif\n"
1578 "       // FIXME temporary hack to detect the case that the reflection\n"
1579 "       // gets blackened at edges due to leaving the area that contains actual\n"
1580 "       // content.\n"
1581 "       // Remove this 'ack once we have a better way to stop this thing from\n"
1582 "       // 'appening.\n"
1583 "       float f = min(1.0, length(dp_texture2D(Texture_Reflection, ScreenTexCoord + vec2(0.01, 0.01)).rgb) / 0.05);\n"
1584 "       f      *= min(1.0, length(dp_texture2D(Texture_Reflection, ScreenTexCoord + vec2(0.01, -0.01)).rgb) / 0.05);\n"
1585 "       f      *= min(1.0, length(dp_texture2D(Texture_Reflection, ScreenTexCoord + vec2(-0.01, 0.01)).rgb) / 0.05);\n"
1586 "       f      *= min(1.0, length(dp_texture2D(Texture_Reflection, ScreenTexCoord + vec2(-0.01, -0.01)).rgb) / 0.05);\n"
1587 "       ScreenTexCoord = mix(SafeScreenTexCoord, ScreenTexCoord, f);\n"
1588 "       color.rgb = mix(color.rgb, cast_myhalf3(dp_texture2D(Texture_Reflection, ScreenTexCoord)) * ReflectColor.rgb, ReflectColor.a);\n"
1589 "#endif\n"
1590 "\n"
1591 "       dp_FragColor = vec4(color);\n"
1592 "}\n"
1593 "#endif // FRAGMENT_SHADER\n"
1594 "\n"
1595 "#endif // !MODE_DEFERREDLIGHTSOURCE\n"
1596 "#endif // !MODE_DEFERREDGEOMETRY\n"
1597 "#endif // !MODE_WATER\n"
1598 "#endif // !MODE_REFRACTION\n"
1599 "#endif // !MODE_BLOOMBLUR\n"
1600 "#endif // !MODE_GENERIC\n"
1601 "#endif // !MODE_POSTPROCESS\n"
1602 "#endif // !MODE_SHOWDEPTH\n"
1603 "#endif // !MODE_DEPTH_OR_SHADOW\n"