2012-05-09 15:30:53 +00:00
|
|
|
!!cvarf ffov
|
|
|
|
|
|
|
|
//panoramic view rendering, for promo map shots or whatever.
|
|
|
|
|
|
|
|
#ifdef VERTEX_SHADER
|
|
|
|
attribute vec2 v_texcoord;
|
|
|
|
varying vec2 texcoord;
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
texcoord = v_texcoord.xy;
|
|
|
|
gl_Position = ftetransform();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#ifdef FRAGMENT_SHADER
|
|
|
|
uniform samplerCube s_t0;
|
|
|
|
varying vec2 texcoord;
|
|
|
|
uniform float cvar_ffov;
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
vec3 tc;
|
|
|
|
float ang;
|
2015-07-03 02:07:41 +00:00
|
|
|
ang = texcoord.x*radians(cvar_ffov);
|
2012-05-09 15:30:53 +00:00
|
|
|
tc.x = sin(ang);
|
|
|
|
tc.y = -texcoord.y;
|
|
|
|
tc.z = cos(ang);
|
|
|
|
gl_FragColor = textureCube(s_t0, tc);
|
|
|
|
}
|
|
|
|
#endif
|