| 203 | return pow(normalize(n), 2.2); |
| 204 | } |
| 205 | static qreal igamma(qreal n) |
| 206 | { |
| 207 | return pow(normalize(n), 1.0 / 2.2); |
| 208 | } |
| 209 | static qreal lumag(qreal r, qreal g, qreal b) |
| 210 | { |
| 211 | return r * yc[0] + g * yc[1] + b * yc[2]; |
nothing calls this directly
no test coverage detected