mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-07 13:30:16 +00:00
14 lines
236 B
Text
14 lines
236 B
Text
|
uniform float timer;
|
||
|
|
||
|
vec4 Process(vec4 color)
|
||
|
{
|
||
|
vec2 texCoord = gl_TexCoord[0].st;
|
||
|
|
||
|
const float pi = 3.14159265358979323846;
|
||
|
|
||
|
texCoord.x += sin(pi * 2.0 * (texCoord.y + timer * 0.125)) * 0.1;
|
||
|
|
||
|
return getTexel(texCoord) * color;
|
||
|
}
|
||
|
|