mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-06 04:50:26 +00:00
9f91fa8f43
This fixes some jerkiness with vertical scrollers due to a bad sine period and makes the overall appearance of the effect what it was originally supposed to be. The old warp2 shader was not created by replicating the formula but by trial and error until it looked close enough. A version of the old warp2 shader with a fixed sine period is still available as a custom hardware shader.
17 lines
502 B
GLSL
17 lines
502 B
GLSL
uniform float timer;
|
|
|
|
vec4 ProcessTexel()
|
|
{
|
|
vec2 texCoord = vTexCoord.st;
|
|
|
|
const float pi = 3.14159265358979323846;
|
|
vec2 offset = vec2(0.0,0.0);
|
|
|
|
offset.y = 0.5 + sin(pi * 2.0 * (texCoord.y + timer * 0.61 + 900.0/8192.0)) + sin(pi * 2.0 * (texCoord.x * 2.0 + timer * 0.36 + 300.0/8192.0));
|
|
offset.x = 0.5 + sin(pi * 2.0 * (texCoord.y + timer * 0.49 + 700.0/8192.0)) + sin(pi * 2.0 * (texCoord.x * 2.0 + timer * 0.49 + 1200.0/8192.0));
|
|
|
|
texCoord += offset * 0.025;
|
|
|
|
return getTexel(texCoord);
|
|
}
|
|
|