2009-11-03 17:04:40 +08:00
|
|
|
uniform sampler2D texture;
|
|
|
|
uniform sampler2D wave;
|
|
|
|
uniform vec2 offset;
|
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
2009-11-11 15:45:59 +08:00
|
|
|
vec2 texoffset = vec2(texture2D(wave, (gl_TexCoord[0].xy * offset).xy));
|
2009-11-03 17:04:40 +08:00
|
|
|
texoffset -= vec2(0.5, 0.5);
|
|
|
|
texoffset *= 0.05;
|
|
|
|
|
|
|
|
gl_FragColor = texture2D(texture, gl_TexCoord[0].xy + texoffset) * gl_Color;
|
|
|
|
}
|