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