mpv-conf/shaders/colorlevel_expand_chroma.glsl

14 lines
199 B
Text
Raw Normal View History

2021-12-03 20:50:08 +08:00
//!DESC color levels + (CHROMA)
//!HOOK CHROMA
//!BIND HOOKED
const float min = 16.0 / 255.0;
const float max = 255.0 / (240.0 - 16.0);
vec4 hook()
{
return (HOOKED_texOff(0) - min) * max;
}