mirror of
https://github.com/TomHarte/CLK.git
synced 2024-12-25 18:30:21 +00:00
Increase saturation.
This commit is contained in:
parent
a943a0b59a
commit
28a7dc194c
@ -749,7 +749,7 @@ using BufferingScanTarget = Outputs::Display::BufferingScanTarget;
|
|||||||
for(size_t c = 0; c < 8; ++c) {
|
for(size_t c = 0; c < 8; ++c) {
|
||||||
// Bit of a fix here: if the pipeline is for composite then assume that chroma separation wasn't
|
// Bit of a fix here: if the pipeline is for composite then assume that chroma separation wasn't
|
||||||
// perfect and deemphasise the colour.
|
// perfect and deemphasise the colour.
|
||||||
firCoefficients[c].y = firCoefficients[c].z = (isSVideoOutput ? 2.0f : 1.0f) * chromaCoefficients[c];
|
firCoefficients[c].y = firCoefficients[c].z = (isSVideoOutput ? 2.0f : 1.25f) * chromaCoefficients[c];
|
||||||
firCoefficients[c].x = 0.0f;
|
firCoefficients[c].x = 0.0f;
|
||||||
if(fabsf(chromaCoefficients[c]) < 0.01f) {
|
if(fabsf(chromaCoefficients[c]) < 0.01f) {
|
||||||
_chromaKernelSize -= 2;
|
_chromaKernelSize -= 2;
|
||||||
|
Loading…
Reference in New Issue
Block a user