slang-shaders/ntsc/shaders/ntsc-pass2-2phase-linear.slang

32 lines
682 B
Plaintext
Raw Normal View History

2016-07-14 04:59:27 +10:00
#version 450
layout(std140, set = 0, binding = 0) uniform UBO
{
mat4 MVP;
vec4 OutputSize;
vec4 OriginalSize;
vec4 SourceSize;
} global;
2016-07-13 14:38:02 +10:00
#include "ntsc-rgbyuv.inc"
2016-07-14 04:59:27 +10:00
#include "ntsc-decode-filter-2phase.inc"
2016-07-13 14:38:02 +10:00
#define fetch_offset(offset, one_x) \
texture(Source, vTexCoord + vec2((offset) * (one_x), 0.0)).xyz
#define NTSC_CRT_GAMMA 2.4
2016-07-14 04:59:27 +10:00
#include "ntsc-pass2-vertex.inc"
2016-07-13 14:38:02 +10:00
#pragma stage fragment
layout(location = 0) in vec2 vTexCoord;
layout(location = 0) out vec4 FragColor;
layout(set = 0, binding = 2) uniform sampler2D Source;
void main()
{
#include "ntsc-pass2-decode.inc"
vec3 rgb = yiq2rgb(signal);
2016-07-14 04:59:27 +10:00
FragColor = vec4(pow(rgb, vec3(NTSC_CRT_GAMMA)), 1.0);
2016-07-13 14:38:02 +10:00
}