| 1185 | namespace native_topo { |
| 1186 | |
| 1187 | inline DiodeProfile native_profile() { |
| 1188 | // Default `kRgbwDefaultProfile` already ships as Native (#2710), so we |
| 1189 | // can just copy it. Explicit set_input_gamut(InputGamut::Native) makes |
| 1190 | // the contract obvious in the test source. |
| 1191 | DiodeProfile p = kRgbwDefaultProfile; |
| 1192 | set_input_gamut(&p, InputGamut::Native); |
| 1193 | return p; |
| 1194 | } |
| 1195 | |
| 1196 | inline u8 q(float v) { return quantize_u8(v); } |
| 1197 |
no test coverage detected