mirror of
https://github.com/italicsjenga/slang-shaders.git
synced 2024-12-02 04:11:30 +11:00
48 lines
1.4 KiB
Plaintext
Executable file
48 lines
1.4 KiB
Plaintext
Executable file
#version 450
|
|
|
|
layout(push_constant) uniform Push
|
|
{
|
|
vec4 SourceSize;
|
|
vec4 OriginalSize;
|
|
vec4 OutputSize;
|
|
uint FrameCount;
|
|
float LUT_Size;
|
|
} params;
|
|
|
|
#pragma parameter LUT_Size "LUT Size" 16.0 16.0 64.0 1.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;
|
|
layout(set = 0, binding = 3) uniform sampler2D SamplerLUT;
|
|
|
|
void main()
|
|
{
|
|
vec4 imgColor = texture(Source, vTexCoord.xy);
|
|
float red = ( imgColor.r * (params.LUT_Size - 1.0) + 0.5 ) / (params.LUT_Size * params.LUT_Size);
|
|
float green = ( imgColor.g * (params.LUT_Size - 1.0) + 0.5 ) / params.LUT_Size;
|
|
float blue1 = floor( imgColor.b * (params.LUT_Size - 1.0) ) / params.LUT_Size;
|
|
float blue2 = ceil( imgColor.b * (params.LUT_Size - 1.0) ) / params.LUT_Size;
|
|
float mixer = (imgColor.b - (blue1 + red)) / ((blue2 + red) - (blue1 + red));
|
|
vec4 color1 = texture( SamplerLUT, vec2( blue1 + red, green ));
|
|
vec4 color2 = texture( SamplerLUT, vec2( blue2 + red, green ));
|
|
FragColor = mix(color1, color2, mixer);
|
|
}
|