mirror of
https://github.com/italicsjenga/slang-shaders.git
synced 2024-11-23 16:11:31 +11:00
107 lines
2.8 KiB
Plaintext
107 lines
2.8 KiB
Plaintext
|
#version 450
|
||
|
|
||
|
/*
|
||
|
Lanczos3 - passY
|
||
|
|
||
|
Multipass code by Hyllian 2022.
|
||
|
|
||
|
*/
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright (C) 2010 Team XBMC
|
||
|
http://www.xbmc.org
|
||
|
Copyright (C) 2011 Stefanos A.
|
||
|
http://www.opentk.com
|
||
|
|
||
|
This Program is free software; you can redistribute it and/or modify
|
||
|
it under the terms of the GNU General Public License as published by
|
||
|
the Free Software Foundation; either version 2, or (at your option)
|
||
|
any later version.
|
||
|
|
||
|
This Program is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
GNU General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License
|
||
|
along with XBMC; see the file COPYING. If not, write to
|
||
|
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
||
|
http://www.gnu.org/copyleft/gpl.html
|
||
|
*/
|
||
|
|
||
|
|
||
|
layout(push_constant) uniform Push
|
||
|
{
|
||
|
vec4 SourceSize;
|
||
|
vec4 OriginalSize;
|
||
|
vec4 OutputSize;
|
||
|
uint FrameCount;
|
||
|
} params;
|
||
|
|
||
|
#define FIX(c) (max(abs(c), 1e-5))
|
||
|
|
||
|
const float PI = 3.1415926535897932384626433832795;
|
||
|
const float radius = 3.0;
|
||
|
|
||
|
layout(std140, set = 0, binding = 0) uniform UBO
|
||
|
{
|
||
|
mat4 MVP;
|
||
|
} global;
|
||
|
|
||
|
#pragma stage vertex
|
||
|
layout(location = 0) in vec4 Position;
|
||
|
layout(location = 1) in vec2 TexCoord;
|
||
|
layout(location = 0) out vec2 vTexCoord;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_Position = global.MVP * Position;
|
||
|
vTexCoord = TexCoord;
|
||
|
}
|
||
|
|
||
|
#pragma stage fragment
|
||
|
layout(location = 0) in vec2 vTexCoord;
|
||
|
layout(location = 0) out vec4 FragColor;
|
||
|
layout(set = 0, binding = 2) uniform sampler2D Source;
|
||
|
|
||
|
|
||
|
vec3 weight3(float x)
|
||
|
{
|
||
|
// Looks like "sample" is a reserved word in slang.
|
||
|
vec3 Sample = FIX(2.0 * PI * vec3(x - 1.5, x - 0.5, x + 0.5));
|
||
|
|
||
|
// Lanczos3. Note: we normalize outside this function, so no point in multiplying by radius.
|
||
|
return sin(Sample) * sin(Sample / radius) / (Sample * Sample);
|
||
|
}
|
||
|
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
vec2 ps = params.SourceSize.zw;
|
||
|
vec2 pos = vTexCoord.xy + ps * vec2(0.0, 0.5);
|
||
|
vec2 fp = fract(pos / ps);
|
||
|
|
||
|
vec2 xystart = (-2.5 - fp) * ps + pos;
|
||
|
|
||
|
float xpos = xystart.x + ps.x * 3.0;
|
||
|
|
||
|
vec3 C0 = texture(Source, vec2(xpos, xystart.y )).rgb;
|
||
|
vec3 C1 = texture(Source, vec2(xpos, xystart.y + ps.y )).rgb;
|
||
|
vec3 C2 = texture(Source, vec2(xpos, xystart.y + ps.y * 2.0)).rgb;
|
||
|
vec3 C3 = texture(Source, vec2(xpos, xystart.y + ps.y * 3.0)).rgb;
|
||
|
vec3 C4 = texture(Source, vec2(xpos, xystart.y + ps.y * 4.0)).rgb;
|
||
|
vec3 C5 = texture(Source, vec2(xpos, xystart.y + ps.y * 5.0)).rgb;
|
||
|
|
||
|
vec3 w1 = weight3(0.5 - fp.y * 0.5);
|
||
|
vec3 w2 = weight3(1.0 - fp.y * 0.5);
|
||
|
|
||
|
float sum = dot( w1, vec3(1)) + dot( w2, vec3(1));
|
||
|
w1 /= sum;
|
||
|
w2 /= sum;
|
||
|
|
||
|
vec3 color = mat3( C0, C2, C4 ) * w1 + mat3( C1, C3, C5) * w2;
|
||
|
|
||
|
FragColor = vec4(color, 1.0);
|
||
|
}
|