Remove a couple of stale files.

Missed these in the bsp related commit.
This commit is contained in:
Bill Currie 2013-06-07 19:42:51 +09:00
parent 26fc0b74e6
commit 042d6e5728
2 changed files with 0 additions and 85 deletions

View file

@ -1,36 +0,0 @@
uniform sampler2D colormap;
uniform sampler2D texture;
uniform sampler2D lightmap;
uniform vec4 fog;
varying vec2 tst;
varying vec2 lst;
varying vec4 color;
float
sqr (float x)
{
return x * x;
}
vec4
fogBlend (vec4 color)
{
float f;
vec4 fog_color = vec4 (fog.rgb, 1.0);
f = exp (-sqr (fog.a * gl_FragCoord.z / gl_FragCoord.w));
return vec4 (mix (fog_color.rgb, color.rgb, f), color.a);
}
void
main (void)
{
float pix = texture2D (texture, tst).r;
float light = texture2D (lightmap, lst).r;
float col;
vec4 c;
c = texture2D (colormap, vec2 (pix, light * 4.0)) * color;
gl_FragColor = fogBlend (c);
}

View file

@ -1,49 +0,0 @@
uniform sampler2D palette;
uniform sampler2D texture;
uniform float realtime;
uniform vec4 fog;
varying vec2 tst;
varying vec4 color;
const float SPEED = 20.0;
const float CYCLE = 128.0;
const float PI = 3.14159;
const float FACTOR = PI * 2.0 / CYCLE;
const vec2 BIAS = vec2 (1.0, 1.0);
const float SCALE = 8.0;
float
sqr (float x)
{
return x * x;
}
vec4
fogBlend (vec4 color)
{
float f;
vec4 fog_color = vec4 (fog.rgb, 1.0);
f = exp (-sqr (fog.a * gl_FragCoord.z / gl_FragCoord.w));
return vec4 (mix (fog_color.rgb, color.rgb, f), color.a);
}
vec2
turb_st (vec2 st, float time)
{
vec2 angle = st.ts * CYCLE / 2.0;
vec2 phase = vec2 (time, time) * SPEED;
return st + (sin ((angle + phase) * FACTOR) + BIAS) / SCALE;
}
void
main (void)
{
float pix;
vec2 st;
st = turb_st (tst, realtime);
pix = texture2D (texture, st).r;
gl_FragColor = fogBlend (texture2D (palette, vec2 (pix, 0.0)) * color);
}