d6291b3ca7
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5409 fc73d0e0-1445-4013-8a0c-d673dee63da5
24 lines
479 B
GLSL
24 lines
479 B
GLSL
!!permu FOG
|
|
!!samps reflectcube
|
|
!!cvardf r_skyfog=0.5
|
|
#include "sys/defs.h"
|
|
#include "sys/fog.h"
|
|
|
|
//simple shader for simple skyboxes.
|
|
|
|
varying vec3 pos;
|
|
#ifdef VERTEX_SHADER
|
|
void main ()
|
|
{
|
|
pos = v_position.xyz - e_eyepos;
|
|
pos.y = -pos.y;
|
|
gl_Position = ftetransform();
|
|
}
|
|
#endif
|
|
#ifdef FRAGMENT_SHADER
|
|
void main ()
|
|
{
|
|
vec4 skybox = textureCube(s_reflectcube, pos);
|
|
gl_FragColor = vec4(mix(skybox.rgb, fog3(skybox.rgb), float(r_skyfog)), 1.0);
|
|
}
|
|
#endif
|