mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-13 00:24:44 +00:00
76f56458b1
With vid_fullscreen 1 and a scaled down viewport, the water distortion effect produced waves in the viewport edge. This commit fixes those.
46 lines
1.3 KiB
GLSL
46 lines
1.3 KiB
GLSL
#version 450
|
|
#extension GL_ARB_separate_shader_objects : enable
|
|
|
|
// Underwater screen warp effect similar to what software renderer provides.
|
|
// Pixel size to simulate lower screen resolutions is used to restore world to full screen size.
|
|
|
|
layout(push_constant) uniform PushConstant
|
|
{
|
|
layout(offset = 68) float time;
|
|
layout(offset = 72) float scale;
|
|
layout(offset = 76) float scrWidth;
|
|
layout(offset = 80) float scrHeight;
|
|
layout(offset = 84) float offsetX;
|
|
layout(offset = 88) float offsetY;
|
|
layout(offset = 92) float pixelSize;
|
|
} pc;
|
|
|
|
layout(set = 0, binding = 0) uniform sampler2D sTexture;
|
|
|
|
layout(location = 0) out vec4 fragmentColor;
|
|
|
|
#define PI 3.1415
|
|
|
|
void main()
|
|
{
|
|
vec2 scrSize = vec2(pc.scrWidth, pc.scrHeight);
|
|
vec2 fragCoord = (gl_FragCoord.xy - vec2(pc.offsetX, pc.offsetY));
|
|
vec2 uv = fragCoord / scrSize;
|
|
|
|
if (pc.time > 0)
|
|
{
|
|
float sx = pc.scale - abs(pc.scrWidth / 2.0 - fragCoord.x) * 2.0 / pc.scrWidth;
|
|
float sy = pc.scale - abs(pc.scrHeight / 2.0 - fragCoord.y) * 2.0 / pc.scrHeight;
|
|
float xShift = 2.0 * pc.time + uv.y * PI * 10;
|
|
float yShift = 2.0 * pc.time + uv.x * PI * 10;
|
|
vec2 distortion = vec2(sin(xShift) * sx, sin(yShift) * sy) * 0.00666;
|
|
|
|
uv += distortion;
|
|
}
|
|
|
|
uv /= pc.pixelSize;
|
|
|
|
uv = clamp(uv * scrSize, vec2(0.0, 0.0), scrSize - vec2(0.5, 0.5));
|
|
|
|
fragmentColor = texture(sTexture, uv);
|
|
}
|