| 247 | #endif // DEAD_CODE |
| 248 | |
| 249 | unsigned char |
| 250 | Lut::toColorSpaceUint8FromLinearFloatFast(float v) const |
| 251 | { |
| 252 | assert(init_); |
| 253 | |
| 254 | return Color::uint8xxToChar(toFunc_hipart_to_uint8xx[hipart(v)]); |
| 255 | } |
| 256 | |
| 257 | unsigned short |
| 258 | Lut::toColorSpaceUint8xxFromLinearFloatFast(float v) const |
no test coverage detected