@{ * Convert color from the CIE XYZ system to RGB. */
| 1423 | * Convert color from the CIE XYZ system to RGB. |
| 1424 | */ |
| 1425 | static void XYZToRGB(const double xyz[3], double rgb[3]) |
| 1426 | { |
| 1427 | XYZToRGB(xyz[0], xyz[1], xyz[2], rgb + 0, rgb + 1, rgb + 2); |
| 1428 | } |
| 1429 | static void XYZToRGB(double x, double y, double z, double* r, double* g, double* b); |
| 1430 | ///@} |
| 1431 |
no outgoing calls