| 1337 | } |
| 1338 | |
| 1339 | void napplyGamma_video(CRGB *rgbarray, fl::u16 count, float gamma) { |
| 1340 | for (fl::u16 i = 0; i < count; ++i) { |
| 1341 | rgbarray[i] = applyGamma_video(rgbarray[i], gamma); |
| 1342 | } |
| 1343 | } |
| 1344 | |
| 1345 | void napplyGamma_video(CRGB *rgbarray, fl::u16 count, float gammaR, |
| 1346 | float gammaG, float gammaB) { |
nothing calls this directly
no test coverage detected