--- ray/src/common/spec_rgb.c 1991/11/12 16:54:40 2.1 +++ ray/src/common/spec_rgb.c 1993/03/05 15:14:04 2.2 @@ -41,15 +41,15 @@ static BYTE chroma[3][NINC] = { #ifdef NTSC static float xyz2rgbmat[3][3] = { /* XYZ to RGB (NTSC) */ - 1.73, -.48, -.26, - -.81, 1.65, -.02, - .08, -.17, 1.28, + {1.73, -.48, -.26}, + {-.81, 1.65, -.02}, + {.08, -.17, 1.28} }; #else static float xyz2rgbmat[3][3] = { /* XYZ to RGB (color monitor) */ - 2.739, -1.145, -.424, - -1.119, 2.029, .033, - .138, -.333, 1.105, + {2.739, -1.145, -.424}, + {-1.119, 2.029, .033}, + {.138, -.333, 1.105} }; #endif