mirror of
https://github.com/italicsjenga/slang-shaders.git
synced 2024-11-23 00:01:31 +11:00
96 lines
2.5 KiB
Plaintext
96 lines
2.5 KiB
Plaintext
|
#version 450
|
||
|
|
||
|
/*
|
||
|
Hyllian's Deposterize Shader - Pass1
|
||
|
|
||
|
Copyright (C) 2011/2016 Hyllian/Jararaca - sergiogdb@gmail.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
|
||
|
of the License, 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 this program; if not, write to the Free Software
|
||
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||
|
|
||
|
*/
|
||
|
|
||
|
layout(push_constant) uniform Push
|
||
|
{
|
||
|
vec4 SourceSize;
|
||
|
vec4 OriginalSize;
|
||
|
vec4 OutputSize;
|
||
|
uint FrameCount;
|
||
|
float EQ_THRESH2;
|
||
|
float DIFF_THRESH2;
|
||
|
} params;
|
||
|
|
||
|
#pragma parameter EQ_THRESH2 "Eq Limit Vertical" 0.01 0.0 1.0 0.01
|
||
|
#pragma parameter DIFF_THRESH2 "Diff Limit Vertical" 0.06 0.0 1.0 0.01
|
||
|
|
||
|
layout(std140, set = 0, binding = 0) uniform UBO
|
||
|
{
|
||
|
mat4 MVP;
|
||
|
} global;
|
||
|
|
||
|
#define EQ params.EQ_THRESH2
|
||
|
#define DF params.DIFF_THRESH2
|
||
|
|
||
|
vec3 df3(vec3 c1, vec3 c2)
|
||
|
{
|
||
|
return abs(c1 - c2);
|
||
|
}
|
||
|
|
||
|
bvec3 eq3(vec3 A, vec3 B)
|
||
|
{
|
||
|
return lessThanEqual(df3(A, B) , vec3(EQ));
|
||
|
}
|
||
|
|
||
|
#pragma stage vertex
|
||
|
layout(location = 0) in vec4 Position;
|
||
|
layout(location = 1) in vec2 TexCoord;
|
||
|
layout(location = 0) out vec2 vTexCoord;
|
||
|
layout(location = 1) out vec4 t1;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_Position = global.MVP * Position;
|
||
|
vTexCoord = TexCoord;
|
||
|
|
||
|
vec2 ps = vec2(params.SourceSize.zw);
|
||
|
float dx = ps.x;
|
||
|
float dy = ps.y;
|
||
|
t1 = vTexCoord.xyyy + vec4( 0, -dy, 0, dy); // B E H
|
||
|
}
|
||
|
|
||
|
#pragma stage fragment
|
||
|
layout(location = 0) in vec2 vTexCoord;
|
||
|
layout(location = 1) in vec4 t1;
|
||
|
layout(location = 0) out vec4 FragColor;
|
||
|
layout(set = 0, binding = 2) uniform sampler2D Source;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
vec3 res;
|
||
|
|
||
|
vec3 B = texture(Source, t1.xy).rgb;
|
||
|
vec3 E = texture(Source, t1.xz).rgb;
|
||
|
vec3 H = texture(Source, t1.xw).rgb;
|
||
|
|
||
|
bvec3 test1 = eq3(B, H);
|
||
|
bvec3 test2 = eq3(B, E);
|
||
|
bvec3 test3 = eq3(E, H);
|
||
|
|
||
|
bvec3 test4 = lessThanEqual(df3(E, H) , vec3(DF, DF, DF));
|
||
|
bvec3 test5 = lessThanEqual(df3(B, E) , vec3(DF, DF, DF));
|
||
|
|
||
|
res = ((test1 == bvec3(false)) && ((test4 == bvec3(true)) && (test2 == bvec3(true)) || (test5 == bvec3(true)) && (test3 == bvec3(true)))) ? 0.5*(B+H) : E;
|
||
|
|
||
|
FragColor = vec4(res, 1.0);
|
||
|
}
|