2015-07-12 00:35:11 +00:00
|
|
|
!!permu FOG
|
2020-04-29 10:43:22 +00:00
|
|
|
!!samps base=0, cloud=1
|
|
|
|
!!cvardf r_skyfog=0.5
|
2015-07-12 00:35:11 +00:00
|
|
|
#include "sys/fog.h"
|
|
|
|
|
2012-05-09 15:30:53 +00:00
|
|
|
//regular sky shader for scrolling q1 skies
|
|
|
|
//the sky surfaces are thrown through this as-is.
|
|
|
|
|
|
|
|
#ifdef VERTEX_SHADER
|
|
|
|
varying vec3 pos;
|
|
|
|
void main ()
|
|
|
|
{
|
|
|
|
pos = v_position.xyz;
|
|
|
|
gl_Position = ftetransform();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#ifdef FRAGMENT_SHADER
|
|
|
|
uniform float e_time;
|
|
|
|
uniform vec3 e_eyepos;
|
|
|
|
varying vec3 pos;
|
|
|
|
void main ()
|
|
|
|
{
|
|
|
|
vec2 tccoord;
|
|
|
|
vec3 dir = pos - e_eyepos;
|
|
|
|
dir.z *= 3.0;
|
|
|
|
dir.xy /= 0.5*length(dir);
|
|
|
|
tccoord = (dir.xy + e_time*0.03125);
|
2020-04-29 10:43:22 +00:00
|
|
|
vec3 sky = vec3(texture2D(s_base, tccoord));
|
2012-05-09 15:30:53 +00:00
|
|
|
tccoord = (dir.xy + e_time*0.0625);
|
2020-04-29 10:43:22 +00:00
|
|
|
vec4 clouds = texture2D(s_cloud, tccoord);
|
|
|
|
sky = (sky.rgb*(1.0-clouds.a)) + (clouds.a*clouds.rgb);
|
|
|
|
#ifdef FOG
|
|
|
|
sky.rgb = mix(sky.rgb, w_fogcolour, float(r_skyfog)*w_fogalpha); //flat fog ignoring actual geometry
|
|
|
|
//sky = fog3(sky); //fog according to actual geometry
|
|
|
|
#endif
|
|
|
|
gl_FragColor = vec4(sky, 1.0);
|
2012-05-09 15:30:53 +00:00
|
|
|
}
|
|
|
|
#endif
|