From: Steinar H. Gunderson Date: Wed, 8 Jan 2014 20:22:35 +0000 (+0100) Subject: Fix some outdated comments in GammaExpansionEffect. X-Git-Tag: 1.0~97 X-Git-Url: https://git.sesse.net/?p=movit;a=commitdiff_plain;h=3bb4d84f2c3914ac815b1c3fbcdea0439aa30d74 Fix some outdated comments in GammaExpansionEffect. --- diff --git a/gamma_expansion_effect.frag b/gamma_expansion_effect.frag index 1174a3e..4733656 100644 --- a/gamma_expansion_effect.frag +++ b/gamma_expansion_effect.frag @@ -1,4 +1,4 @@ -// Expand sRGB gamma curve. +// Expand gamma curve. vec4 FUNCNAME(vec2 tc) { vec4 x = INPUT(tc); diff --git a/gamma_expansion_effect.h b/gamma_expansion_effect.h index 07d94be..e4a94b3 100644 --- a/gamma_expansion_effect.h +++ b/gamma_expansion_effect.h @@ -5,7 +5,7 @@ // typically inserted by the framework automatically at the beginning // of the processing chain. // -// Currently supports sRGB and Rec. 601/709. +// Currently supports sRGB, Rec. 601/709 and Rec. 2020 (10- and 12-bit). #include