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;
|
|
|
|
uint FrameCount;
|
|
|
|
} global;
|
|
|
|
|
2016-07-13 14:38:02 +10:00
|
|
|
#define TWO_PHASE
|
|
|
|
#define SVIDEO
|
|
|
|
#include "ntsc-param.inc"
|
|
|
|
#include "ntsc-rgbyuv.inc"
|
2016-07-14 04:59:27 +10:00
|
|
|
#include "ntsc-pass1-vertex.inc"
|
2016-07-13 14:38:02 +10:00
|
|
|
|
|
|
|
#pragma stage fragment
|
|
|
|
layout(location = 0) in vec2 vTexCoord;
|
2016-07-14 04:59:27 +10:00
|
|
|
layout(location = 1) in vec2 pix_no;
|
2016-07-13 14:38:02 +10:00
|
|
|
layout(location = 0) out vec4 FragColor;
|
|
|
|
layout(set = 0, binding = 2) uniform sampler2D Source;
|
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
#include "ntsc-pass1-encode-demodulate.inc"
|
|
|
|
}
|