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