Searched refs:n_value (Results 1 – 1 of 1) sorted by relevance
1641 float n_value = (static_cast<float>(value) / saturation); in ApplysRGBGamma() local1642 n_value = (n_value <= 0.0031308f) in ApplysRGBGamma()1643 ? n_value * 12.92f in ApplysRGBGamma()1644 : 1.055f * pow(n_value, 0.4166667f) - 0.055f; in ApplysRGBGamma()1645 return n_value * saturation; in ApplysRGBGamma()