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