2016-04-29 01:04:59 +00:00
|
|
|
//
|
|
|
|
// IntermediateShader.cpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 28/04/2016.
|
|
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "IntermediateShader.hpp"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include "../../../../SignalProcessing/FIRFilter.hpp"
|
|
|
|
|
|
|
|
using namespace OpenGL;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
const OpenGL::Shader::AttributeBinding bindings[] =
|
|
|
|
{
|
|
|
|
{"inputPosition", 0},
|
|
|
|
{"outputPosition", 1},
|
2016-05-07 22:37:18 +00:00
|
|
|
{"phaseAndAmplitude", 2},
|
2016-04-29 01:04:59 +00:00
|
|
|
{"phaseTime", 3},
|
|
|
|
{nullptr}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<IntermediateShader> IntermediateShader::make_shader(const char *fragment_shader, bool use_usampler, bool input_is_inputPosition)
|
|
|
|
{
|
|
|
|
const char *sampler_type = use_usampler ? "usampler2D" : "sampler2D";
|
|
|
|
const char *input_variable = input_is_inputPosition ? "inputPosition" : "outputPosition";
|
|
|
|
|
|
|
|
char *vertex_shader;
|
|
|
|
asprintf(&vertex_shader,
|
|
|
|
"#version 150\n"
|
|
|
|
|
2016-05-10 23:50:12 +00:00
|
|
|
"in vec2 inputStart;"
|
|
|
|
"in vec2 outputStart;"
|
|
|
|
"in vec2 ends;"
|
|
|
|
"in vec3 phaseTimeAndAmplitude;"
|
2016-04-29 01:04:59 +00:00
|
|
|
|
|
|
|
"uniform float phaseCyclesPerTick;"
|
|
|
|
"uniform ivec2 outputTextureSize;"
|
|
|
|
"uniform float extension;"
|
|
|
|
"uniform %s texID;"
|
2016-04-29 22:37:35 +00:00
|
|
|
"uniform float offsets[5];"
|
2016-04-29 01:04:59 +00:00
|
|
|
|
|
|
|
"out vec2 phaseAndAmplitudeVarying;"
|
|
|
|
"out vec2 inputPositionsVarying[11];"
|
|
|
|
"out vec2 iInputPositionVarying;"
|
|
|
|
"out vec2 delayLinePositionVarying;"
|
|
|
|
|
|
|
|
"void main(void)"
|
|
|
|
"{"
|
2017-01-04 02:16:38 +00:00
|
|
|
// odd vertices are on the left, even on the right
|
2016-05-10 23:50:12 +00:00
|
|
|
"float extent = float(gl_VertexID & 1);"
|
|
|
|
|
2017-01-04 02:16:38 +00:00
|
|
|
// inputPosition.x is either inputStart.x or ends.x, depending on whether it is on the left or the right;
|
|
|
|
// outputPosition.x is either outputStart.x or ends.y;
|
|
|
|
// .ys are inputStart.y and outputStart.y respectively
|
2016-05-10 23:50:12 +00:00
|
|
|
"vec2 inputPosition = vec2(mix(inputStart.x, ends.x, extent), inputStart.y);"
|
|
|
|
"vec2 outputPosition = vec2(mix(outputStart.x, ends.y, extent), outputStart.y);"
|
2017-01-04 02:16:38 +00:00
|
|
|
|
|
|
|
// extension is the amount to extend both the input and output by to add a full colour cycle at each end
|
2016-05-10 23:50:12 +00:00
|
|
|
"vec2 extensionVector = vec2(extension, 0.0) * 2.0 * (extent - 0.5);"
|
|
|
|
|
2017-01-04 02:16:38 +00:00
|
|
|
// extended[Input/Output]Position are [input/output]Position with the necessary applied extension
|
2016-04-29 01:04:59 +00:00
|
|
|
"vec2 extendedInputPosition = %s + extensionVector;"
|
|
|
|
"vec2 extendedOutputPosition = outputPosition + extensionVector;"
|
|
|
|
|
2017-01-04 02:16:38 +00:00
|
|
|
// keep iInputPositionVarying in whole source pixels, scale mappedInputPosition to the ordinary normalised range
|
2016-04-29 01:04:59 +00:00
|
|
|
"vec2 textureSize = vec2(textureSize(texID, 0));"
|
|
|
|
"iInputPositionVarying = extendedInputPosition;"
|
|
|
|
"vec2 mappedInputPosition = (extendedInputPosition + vec2(0.0, 0.5)) / textureSize;"
|
|
|
|
|
2017-01-04 02:16:38 +00:00
|
|
|
// setup input positions spaced as per the supplied offsets; these are for filtering where required
|
2016-05-01 00:48:09 +00:00
|
|
|
"inputPositionsVarying[0] = mappedInputPosition - (vec2(offsets[0], 0.0) / textureSize);"
|
|
|
|
"inputPositionsVarying[1] = mappedInputPosition - (vec2(offsets[1], 0.0) / textureSize);"
|
2016-04-29 22:37:35 +00:00
|
|
|
"inputPositionsVarying[2] = mappedInputPosition - (vec2(offsets[2], 0.0) / textureSize);"
|
2016-05-01 00:48:09 +00:00
|
|
|
"inputPositionsVarying[3] = mappedInputPosition - (vec2(offsets[3], 0.0) / textureSize);"
|
|
|
|
"inputPositionsVarying[4] = mappedInputPosition - (vec2(offsets[4], 0.0) / textureSize);"
|
2016-04-29 01:04:59 +00:00
|
|
|
"inputPositionsVarying[5] = mappedInputPosition;"
|
2016-05-01 00:48:09 +00:00
|
|
|
"inputPositionsVarying[6] = mappedInputPosition + (vec2(offsets[4], 0.0) / textureSize);"
|
|
|
|
"inputPositionsVarying[7] = mappedInputPosition + (vec2(offsets[3], 0.0) / textureSize);"
|
2016-04-29 22:37:35 +00:00
|
|
|
"inputPositionsVarying[8] = mappedInputPosition + (vec2(offsets[2], 0.0) / textureSize);"
|
2016-05-01 00:48:09 +00:00
|
|
|
"inputPositionsVarying[9] = mappedInputPosition + (vec2(offsets[1], 0.0) / textureSize);"
|
|
|
|
"inputPositionsVarying[10] = mappedInputPosition + (vec2(offsets[0], 0.0) / textureSize);"
|
2016-04-29 01:04:59 +00:00
|
|
|
"delayLinePositionVarying = mappedInputPosition - vec2(0.0, 1.0);"
|
|
|
|
|
2017-01-04 02:16:38 +00:00
|
|
|
// setup phaseAndAmplitudeVarying.x as colour burst subcarrier phase, in radians;
|
|
|
|
// setup phaseAndAmplitudeVarying.x as colour burst amplitude
|
2016-05-10 23:50:12 +00:00
|
|
|
"phaseAndAmplitudeVarying.x = (phaseCyclesPerTick * (extendedOutputPosition.x - phaseTimeAndAmplitude.y) + (phaseTimeAndAmplitude.x / 256.0)) * 2.0 * 3.141592654;"
|
|
|
|
"phaseAndAmplitudeVarying.y = 0.33;" // TODO: reinstate connection with (phaseTimeAndAmplitude.y/256.0)
|
2016-04-29 01:04:59 +00:00
|
|
|
|
2017-01-04 02:16:38 +00:00
|
|
|
// determine output position by scaling the output position according to the texture size
|
2016-05-08 20:09:39 +00:00
|
|
|
"vec2 eyePosition = 2.0*(extendedOutputPosition / outputTextureSize) - vec2(1.0) + vec2(1.0)/outputTextureSize;"
|
2016-04-29 01:04:59 +00:00
|
|
|
"gl_Position = vec4(eyePosition, 0.0, 1.0);"
|
|
|
|
"}", sampler_type, input_variable);
|
|
|
|
|
2016-06-24 00:52:44 +00:00
|
|
|
std::unique_ptr<IntermediateShader> shader(new IntermediateShader(vertex_shader, fragment_shader, bindings));
|
2016-04-29 01:04:59 +00:00
|
|
|
free(vertex_shader);
|
|
|
|
|
|
|
|
return shader;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<IntermediateShader> IntermediateShader::make_source_conversion_shader(const char *composite_shader, const char *rgb_shader)
|
|
|
|
{
|
|
|
|
char *composite_sample = (char *)composite_shader;
|
|
|
|
if(!composite_sample)
|
|
|
|
{
|
|
|
|
asprintf(&composite_sample,
|
|
|
|
"%s\n"
|
|
|
|
"uniform mat3 rgbToLumaChroma;"
|
|
|
|
"float composite_sample(usampler2D texID, vec2 coordinate, vec2 iCoordinate, float phase, float amplitude)"
|
|
|
|
"{"
|
|
|
|
"vec3 rgbColour = clamp(rgb_sample(texID, coordinate, iCoordinate), vec3(0.0), vec3(1.0));"
|
|
|
|
"vec3 lumaChromaColour = rgbToLumaChroma * rgbColour;"
|
|
|
|
"vec2 quadrature = vec2(cos(phase), -sin(phase)) * amplitude;"
|
|
|
|
"return dot(lumaChromaColour, vec3(1.0 - amplitude, quadrature));"
|
|
|
|
"}",
|
|
|
|
rgb_shader);
|
|
|
|
}
|
|
|
|
|
|
|
|
char *fragment_shader;
|
|
|
|
asprintf(&fragment_shader,
|
|
|
|
"#version 150\n"
|
|
|
|
|
|
|
|
"in vec2 inputPositionsVarying[11];"
|
|
|
|
"in vec2 iInputPositionVarying;"
|
|
|
|
"in vec2 phaseAndAmplitudeVarying;"
|
|
|
|
|
|
|
|
"out vec4 fragColour;"
|
|
|
|
|
|
|
|
"uniform usampler2D texID;"
|
|
|
|
|
|
|
|
"\n%s\n"
|
|
|
|
|
|
|
|
"void main(void)"
|
|
|
|
"{"
|
|
|
|
"fragColour = vec4(composite_sample(texID, inputPositionsVarying[5], iInputPositionVarying, phaseAndAmplitudeVarying.x, phaseAndAmplitudeVarying.y));"
|
|
|
|
"}"
|
|
|
|
, composite_sample);
|
|
|
|
if(!composite_shader) free(composite_sample);
|
|
|
|
|
|
|
|
std::unique_ptr<IntermediateShader> shader = make_shader(fragment_shader, true, true);
|
|
|
|
free(fragment_shader);
|
|
|
|
|
|
|
|
return shader;
|
|
|
|
}
|
|
|
|
|
2016-05-03 01:05:58 +00:00
|
|
|
std::unique_ptr<IntermediateShader> IntermediateShader::make_rgb_source_shader(const char *rgb_shader)
|
|
|
|
{
|
|
|
|
char *fragment_shader;
|
|
|
|
asprintf(&fragment_shader,
|
|
|
|
"#version 150\n"
|
|
|
|
|
|
|
|
"in vec2 inputPositionsVarying[11];"
|
|
|
|
"in vec2 iInputPositionVarying;"
|
|
|
|
"in vec2 phaseAndAmplitudeVarying;"
|
|
|
|
|
|
|
|
"out vec3 fragColour;"
|
|
|
|
|
|
|
|
"uniform usampler2D texID;"
|
|
|
|
|
|
|
|
"\n%s\n"
|
|
|
|
|
|
|
|
"void main(void)"
|
|
|
|
"{"
|
2016-05-06 01:27:13 +00:00
|
|
|
"fragColour = rgb_sample(texID, inputPositionsVarying[5], iInputPositionVarying);"
|
2016-05-03 01:05:58 +00:00
|
|
|
"}"
|
|
|
|
, rgb_shader);
|
|
|
|
|
|
|
|
std::unique_ptr<IntermediateShader> shader = make_shader(fragment_shader, true, true);
|
|
|
|
free(fragment_shader);
|
|
|
|
|
|
|
|
return shader;
|
|
|
|
}
|
|
|
|
|
2016-04-29 01:04:59 +00:00
|
|
|
std::unique_ptr<IntermediateShader> IntermediateShader::make_chroma_luma_separation_shader()
|
|
|
|
{
|
|
|
|
return make_shader(
|
|
|
|
"#version 150\n"
|
|
|
|
|
|
|
|
"in vec2 phaseAndAmplitudeVarying;"
|
|
|
|
"in vec2 inputPositionsVarying[11];"
|
|
|
|
"uniform vec4 weights[3];"
|
|
|
|
|
|
|
|
"out vec3 fragColour;"
|
|
|
|
|
|
|
|
"uniform sampler2D texID;"
|
|
|
|
|
|
|
|
"void main(void)"
|
|
|
|
"{"
|
|
|
|
"vec4 samples[3] = vec4[]("
|
|
|
|
"vec4("
|
|
|
|
"texture(texID, inputPositionsVarying[0]).r,"
|
|
|
|
"texture(texID, inputPositionsVarying[1]).r,"
|
|
|
|
"texture(texID, inputPositionsVarying[2]).r,"
|
|
|
|
"texture(texID, inputPositionsVarying[3]).r"
|
|
|
|
"),"
|
|
|
|
"vec4("
|
|
|
|
"texture(texID, inputPositionsVarying[4]).r,"
|
|
|
|
"texture(texID, inputPositionsVarying[5]).r,"
|
|
|
|
"texture(texID, inputPositionsVarying[6]).r,"
|
|
|
|
"texture(texID, inputPositionsVarying[7]).r"
|
|
|
|
"),"
|
|
|
|
"vec4("
|
|
|
|
"texture(texID, inputPositionsVarying[8]).r,"
|
|
|
|
"texture(texID, inputPositionsVarying[9]).r,"
|
|
|
|
"texture(texID, inputPositionsVarying[10]).r,"
|
|
|
|
"0.0"
|
|
|
|
")"
|
|
|
|
");"
|
|
|
|
|
|
|
|
"float luminance = "
|
|
|
|
"dot(vec3("
|
|
|
|
"dot(samples[0], weights[0]),"
|
|
|
|
"dot(samples[1], weights[1]),"
|
|
|
|
"dot(samples[2], weights[2])"
|
2016-05-03 11:46:40 +00:00
|
|
|
"), vec3(1.0));"
|
2016-04-29 01:04:59 +00:00
|
|
|
|
|
|
|
"float chrominance = 0.5 * (samples[1].y - luminance) / phaseAndAmplitudeVarying.y;"
|
2016-05-03 22:15:24 +00:00
|
|
|
"luminance /= (1.0 - phaseAndAmplitudeVarying.y);"
|
2016-04-29 01:04:59 +00:00
|
|
|
|
2016-05-03 22:15:24 +00:00
|
|
|
"vec2 quadrature = vec2(cos(phaseAndAmplitudeVarying.x), -sin(phaseAndAmplitudeVarying.x));"
|
2016-04-29 01:04:59 +00:00
|
|
|
"fragColour = vec3(luminance, vec2(0.5) + (chrominance * quadrature));"
|
|
|
|
"}",false, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<IntermediateShader> IntermediateShader::make_chroma_filter_shader()
|
|
|
|
{
|
|
|
|
return make_shader(
|
|
|
|
"#version 150\n"
|
|
|
|
|
|
|
|
"in vec2 inputPositionsVarying[11];"
|
|
|
|
"uniform vec4 weights[3];"
|
|
|
|
|
|
|
|
"out vec3 fragColour;"
|
|
|
|
|
|
|
|
"uniform sampler2D texID;"
|
|
|
|
"uniform mat3 lumaChromaToRGB;"
|
|
|
|
|
|
|
|
"void main(void)"
|
|
|
|
"{"
|
2016-05-03 11:46:40 +00:00
|
|
|
"vec3 samples[] = vec3[]("
|
|
|
|
"texture(texID, inputPositionsVarying[0]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[1]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[2]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[3]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[4]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[5]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[6]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[7]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[8]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[9]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[10]).rgb"
|
2016-04-29 01:04:59 +00:00
|
|
|
");"
|
|
|
|
|
2016-05-03 11:46:40 +00:00
|
|
|
"vec4 chromaChannel1[] = vec4[]("
|
2016-04-29 01:04:59 +00:00
|
|
|
"vec4(samples[0].g, samples[1].g, samples[2].g, samples[3].g),"
|
|
|
|
"vec4(samples[4].g, samples[5].g, samples[6].g, samples[7].g),"
|
|
|
|
"vec4(samples[8].g, samples[9].g, samples[10].g, 0.0)"
|
|
|
|
");"
|
2016-05-03 11:46:40 +00:00
|
|
|
"vec4 chromaChannel2[] = vec4[]("
|
|
|
|
"vec4(samples[0].b, samples[1].b, samples[2].b, samples[3].b),"
|
|
|
|
"vec4(samples[4].b, samples[5].b, samples[6].b, samples[7].b),"
|
|
|
|
"vec4(samples[8].b, samples[9].b, samples[10].b, 0.0)"
|
|
|
|
");"
|
2016-04-29 01:04:59 +00:00
|
|
|
|
2016-05-03 11:46:40 +00:00
|
|
|
"vec3 lumaChromaColour = vec3(samples[5].r,"
|
2016-04-29 01:04:59 +00:00
|
|
|
"dot(vec3("
|
2016-05-03 11:46:40 +00:00
|
|
|
"dot(chromaChannel1[0], weights[0]),"
|
|
|
|
"dot(chromaChannel1[1], weights[1]),"
|
|
|
|
"dot(chromaChannel1[2], weights[2])"
|
|
|
|
"), vec3(1.0)),"
|
2016-04-29 01:04:59 +00:00
|
|
|
"dot(vec3("
|
2016-05-03 11:46:40 +00:00
|
|
|
"dot(chromaChannel2[0], weights[0]),"
|
|
|
|
"dot(chromaChannel2[1], weights[1]),"
|
|
|
|
"dot(chromaChannel2[2], weights[2])"
|
|
|
|
"), vec3(1.0))"
|
2016-04-29 01:04:59 +00:00
|
|
|
");"
|
|
|
|
|
2016-05-16 12:01:29 +00:00
|
|
|
"vec3 lumaChromaColourInRange = (lumaChromaColour - vec3(0.0, 0.5, 0.5)) * vec3(1.0, 2.0, 2.0);"
|
2016-04-29 01:04:59 +00:00
|
|
|
"fragColour = lumaChromaToRGB * lumaChromaColourInRange;"
|
|
|
|
"}", false, false);
|
|
|
|
}
|
|
|
|
|
2016-05-03 11:46:40 +00:00
|
|
|
std::unique_ptr<IntermediateShader> IntermediateShader::make_luma_filter_shader()
|
|
|
|
{
|
|
|
|
return make_shader(
|
|
|
|
"#version 150\n"
|
|
|
|
|
|
|
|
"in vec2 inputPositionsVarying[11];"
|
|
|
|
"uniform vec4 weights[3];"
|
|
|
|
|
|
|
|
"out vec3 fragColour;"
|
|
|
|
|
|
|
|
"uniform sampler2D texID;"
|
|
|
|
"uniform mat3 lumaChromaToRGB;"
|
|
|
|
|
|
|
|
"void main(void)"
|
|
|
|
"{"
|
|
|
|
"vec3 samples[] = vec3[]("
|
|
|
|
"texture(texID, inputPositionsVarying[0]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[1]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[2]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[3]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[4]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[5]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[6]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[7]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[8]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[9]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[10]).rgb"
|
|
|
|
");"
|
|
|
|
|
|
|
|
"vec4 luminance[] = vec4[]("
|
|
|
|
"vec4(samples[0].r, samples[1].r, samples[2].r, samples[3].r),"
|
|
|
|
"vec4(samples[4].r, samples[5].r, samples[6].r, samples[7].r),"
|
|
|
|
"vec4(samples[8].r, samples[9].r, samples[10].r, 0.0)"
|
|
|
|
");"
|
|
|
|
|
|
|
|
"fragColour = vec3("
|
|
|
|
"dot(vec3("
|
|
|
|
"dot(luminance[0], weights[0]),"
|
|
|
|
"dot(luminance[1], weights[1]),"
|
|
|
|
"dot(luminance[2], weights[2])"
|
|
|
|
"), vec3(1.0)),"
|
|
|
|
"samples[5].gb"
|
|
|
|
");"
|
|
|
|
"}", false, false);
|
|
|
|
}
|
|
|
|
|
2016-05-03 01:05:58 +00:00
|
|
|
std::unique_ptr<IntermediateShader> IntermediateShader::make_rgb_filter_shader()
|
|
|
|
{
|
|
|
|
return make_shader(
|
|
|
|
"#version 150\n"
|
|
|
|
|
|
|
|
"in vec2 inputPositionsVarying[11];"
|
|
|
|
"uniform vec4 weights[3];"
|
|
|
|
|
|
|
|
"out vec3 fragColour;"
|
|
|
|
|
|
|
|
"uniform sampler2D texID;"
|
|
|
|
|
|
|
|
"void main(void)"
|
|
|
|
"{"
|
|
|
|
"vec3 samples[] = vec3[]("
|
|
|
|
"texture(texID, inputPositionsVarying[0]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[1]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[2]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[3]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[4]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[5]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[6]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[7]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[8]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[9]).rgb,"
|
|
|
|
"texture(texID, inputPositionsVarying[10]).rgb"
|
|
|
|
");"
|
|
|
|
|
|
|
|
"vec4 channel1[] = vec4[]("
|
|
|
|
"vec4(samples[0].r, samples[1].r, samples[2].r, samples[3].r),"
|
|
|
|
"vec4(samples[4].r, samples[5].r, samples[6].r, samples[7].r),"
|
|
|
|
"vec4(samples[8].r, samples[9].r, samples[10].r, 0.0)"
|
|
|
|
");"
|
|
|
|
"vec4 channel2[] = vec4[]("
|
|
|
|
"vec4(samples[0].g, samples[1].g, samples[2].g, samples[3].g),"
|
|
|
|
"vec4(samples[4].g, samples[5].g, samples[6].g, samples[7].g),"
|
|
|
|
"vec4(samples[8].g, samples[9].g, samples[10].g, 0.0)"
|
|
|
|
");"
|
|
|
|
"vec4 channel3[] = vec4[]("
|
|
|
|
"vec4(samples[0].b, samples[1].b, samples[2].b, samples[3].b),"
|
|
|
|
"vec4(samples[4].b, samples[5].b, samples[6].b, samples[7].b),"
|
|
|
|
"vec4(samples[8].b, samples[9].b, samples[10].b, 0.0)"
|
|
|
|
");"
|
|
|
|
|
|
|
|
"fragColour = vec3("
|
|
|
|
"dot(vec3("
|
|
|
|
"dot(channel1[0], weights[0]),"
|
|
|
|
"dot(channel1[1], weights[1]),"
|
|
|
|
"dot(channel1[2], weights[2])"
|
|
|
|
"), vec3(1.0)),"
|
|
|
|
"dot(vec3("
|
|
|
|
"dot(channel2[0], weights[0]),"
|
|
|
|
"dot(channel2[1], weights[1]),"
|
|
|
|
"dot(channel2[2], weights[2])"
|
|
|
|
"), vec3(1.0)),"
|
|
|
|
"dot(vec3("
|
|
|
|
"dot(channel3[0], weights[0]),"
|
|
|
|
"dot(channel3[1], weights[1]),"
|
|
|
|
"dot(channel3[2], weights[2])"
|
|
|
|
"), vec3(1.0))"
|
|
|
|
");"
|
|
|
|
"}", false, false);
|
|
|
|
}
|
|
|
|
|
2016-04-29 01:04:59 +00:00
|
|
|
void IntermediateShader::set_output_size(unsigned int output_width, unsigned int output_height)
|
|
|
|
{
|
2016-05-14 02:08:32 +00:00
|
|
|
set_uniform("outputTextureSize", (GLint)output_width, (GLint)output_height);
|
2016-04-29 01:04:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void IntermediateShader::set_source_texture_unit(GLenum unit)
|
|
|
|
{
|
2016-05-14 02:08:32 +00:00
|
|
|
set_uniform("texID", (GLint)(unit - GL_TEXTURE0));
|
2016-04-29 01:04:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void IntermediateShader::set_filter_coefficients(float sampling_rate, float cutoff_frequency)
|
|
|
|
{
|
2016-04-29 22:37:35 +00:00
|
|
|
// The process below: the source texture will have bilinear filtering enabled; so by
|
|
|
|
// sampling at non-integral offsets from the centre the shader can get a weighted sum
|
|
|
|
// of two source pixels, then scale that once, to do two taps per sample. However
|
|
|
|
// that works only if the two coefficients being joined have the same sign. So the
|
|
|
|
// number of usable taps is between 11 and 21 depending on the values that come out.
|
|
|
|
// Perform a linear search for the highest number of taps we can use with 11 samples.
|
2016-05-14 02:08:32 +00:00
|
|
|
GLfloat weights[12];
|
|
|
|
GLfloat offsets[5];
|
2016-04-29 22:37:35 +00:00
|
|
|
unsigned int taps = 21;
|
|
|
|
while(1)
|
|
|
|
{
|
|
|
|
float coefficients[21];
|
|
|
|
SignalProcessing::FIRFilter luminance_filter(taps, sampling_rate, 0.0f, cutoff_frequency, SignalProcessing::FIRFilter::DefaultAttenuation);
|
|
|
|
luminance_filter.get_coefficients(coefficients);
|
|
|
|
|
|
|
|
int sample = 0;
|
|
|
|
int c = 0;
|
|
|
|
memset(weights, 0, sizeof(float)*12);
|
2016-05-01 00:48:09 +00:00
|
|
|
memset(offsets, 0, sizeof(float)*5);
|
|
|
|
|
|
|
|
int halfSize = (taps >> 1);
|
|
|
|
while(c < halfSize && sample < 5)
|
2016-04-29 22:37:35 +00:00
|
|
|
{
|
2016-05-01 00:48:09 +00:00
|
|
|
offsets[sample] = (float)(halfSize - c);
|
2016-04-29 22:37:35 +00:00
|
|
|
if((coefficients[c] < 0.0f) == (coefficients[c+1] < 0.0f) && c+1 < (taps >> 1))
|
|
|
|
{
|
|
|
|
weights[sample] = coefficients[c] + coefficients[c+1];
|
2016-05-01 00:48:09 +00:00
|
|
|
offsets[sample] -= (coefficients[c+1] / weights[sample]);
|
2016-04-29 22:37:35 +00:00
|
|
|
c += 2;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
weights[sample] = coefficients[c];
|
|
|
|
c++;
|
|
|
|
}
|
|
|
|
sample ++;
|
|
|
|
}
|
2016-05-01 00:48:09 +00:00
|
|
|
if(c == halfSize) // i.e. we finished combining inputs before we ran out of space
|
2016-04-29 22:37:35 +00:00
|
|
|
{
|
|
|
|
weights[sample] = coefficients[c];
|
|
|
|
for(int c = 0; c < sample; c++)
|
|
|
|
{
|
|
|
|
weights[sample+c+1] = weights[sample-c-1];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
taps -= 2;
|
|
|
|
}
|
|
|
|
|
2016-05-14 02:08:32 +00:00
|
|
|
set_uniform("weights", 4, 3, weights);
|
|
|
|
set_uniform("offsets", 1, 5, offsets);
|
2016-04-29 01:04:59 +00:00
|
|
|
}
|
|
|
|
|
2016-05-03 01:05:58 +00:00
|
|
|
void IntermediateShader::set_separation_frequency(float sampling_rate, float colour_burst_frequency)
|
|
|
|
{
|
2016-05-03 11:46:40 +00:00
|
|
|
set_filter_coefficients(sampling_rate, colour_burst_frequency);
|
2016-05-03 01:05:58 +00:00
|
|
|
}
|
|
|
|
|
2016-04-29 01:04:59 +00:00
|
|
|
void IntermediateShader::set_phase_cycles_per_sample(float phase_cycles_per_sample, bool extend_runs_to_full_cycle)
|
|
|
|
{
|
2016-05-14 02:08:32 +00:00
|
|
|
set_uniform("phaseCyclesPerTick", (GLfloat)phase_cycles_per_sample);
|
|
|
|
set_uniform("extension", extend_runs_to_full_cycle ? ceilf(1.0f / phase_cycles_per_sample) : 0.0f);
|
2016-04-29 01:04:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void IntermediateShader::set_colour_conversion_matrices(float *fromRGB, float *toRGB)
|
|
|
|
{
|
2016-05-14 02:08:32 +00:00
|
|
|
set_uniform_matrix("lumaChromaToRGB", 3, false, toRGB);
|
|
|
|
set_uniform_matrix("rgbToLumaChroma", 3, false, fromRGB);
|
2016-04-29 01:04:59 +00:00
|
|
|
}
|