Home | History | Annotate | Download | only in src

Lines Matching defs:Colorant

448 // be printed on an n-colorant device. The laydown order may be the same as the
2976 unique name and set of XYZ or L*a*b* values to give the colorant an unambiguous
2977 value. The first colorant listed is the colorant of the first device channel of
2978 a lut tag. The second colorant listed is the colorant of the second device channel
3023 // Saves a colorant table. It is using the named color structure for simplicity sake
3125 cmsUInt16Number Colorant[cmsMAXCHANNELS];
3128 memset(Colorant, 0, sizeof(Colorant));
3133 if (!_cmsReadUInt16Array(io, nDeviceCoords, Colorant)) goto Error;
3135 if (!cmsAppendNamedColor(v, Root, PCS, Colorant)) goto Error;
3175 cmsUInt16Number Colorant[cmsMAXCHANNELS];
3178 if (!cmsNamedColorInfo(NamedColorList, i, Root, NULL, NULL, PCS, Colorant)) return 0;
3182 if (!_cmsWriteUInt16Array(io, NamedColorList ->ColorantCount, Colorant)) return FALSE;
4700 _cmsVCGTGAMMA Colorant[3];
4707 if (!_cmsRead15Fixed16Number(io, &Colorant[n].Gamma)) goto Error;
4708 if (!_cmsRead15Fixed16Number(io, &Colorant[n].Min)) goto Error;
4709 if (!_cmsRead15Fixed16Number(io, &Colorant[n].Max)) goto Error;
4723 Params[0] = Colorant[n].Gamma;
4724 Params[1] = pow((Colorant[n].Max - Colorant[n].Min), (1.0 / Colorant[n].Gamma));
4728 Params[5] = Colorant[n].Min;