Home | History | Annotate | Download | only in src

Lines Matching refs:Lut

30 // Link several profiles to obtain a single LUT modelling the whole color transform. Intents, Black point
435 // Handle PCS mismatches. A specialized stage is added to the LUT in such case
528 cmsPipeline* Lut = NULL;
540 // Allocate an empty LUT for holding the result. 0 as channel count means 'undefined'
584 // read the LUT to be applied. Settings don't apply here.
587 // Get the involved LUT from the profile
588 Lut = _cmsReadDevicelinkLUT(hProfile, Intent);
589 if (Lut == NULL) goto Error;
608 Lut = _cmsReadInputLUT(hProfile, Intent);
609 if (Lut == NULL) goto Error;
614 Lut = _cmsReadOutputLUT(hProfile, Intent);
615 if (Lut == NULL) goto Error;
624 // Concatenate to the output LUT
625 if (!cmsPipelineCat(Result, Lut))
628 cmsPipelineFree(Lut);
629 Lut = NULL;
639 if (Lut != NULL) cmsPipelineFree(Lut);
742 // Allocate an empty LUT for holding the result
746 // Create a LUT holding normal ICC transform
777 // This is the one and only MPE in this LUT
933 // Allocate an empty LUT for holding the result
940 // We need the input LUT of the last profile, assuming this one is responsible of
941 // black generation. This LUT will be seached in inverse order.
950 // Create a LUT holding normal ICC transform
1015 // Chain several profiles into a single LUT. It just checks the parameters and then calls the handler