HomeSort by relevance Sort by last modified time
    Searched defs:Lut (Results 1 - 6 of 6) sorted by null

  /external/pdfium/third_party/lcms/src/
cmsio1.c 31 // LUT tags
159 cmsPipeline* Lut;
165 Lut = cmsPipelineAlloc(ContextID, 1, 3);
166 if (Lut == NULL)
185 if (!cmsPipelineInsertStage(Lut, cmsAT_END, cmsStageAllocMatrix(ContextID, 3, 1, OneToThreeInputMatrix, NULL)) ||
186 !cmsPipelineInsertStage(Lut, cmsAT_END, cmsStageAllocToneCurves(ContextID, 3, LabCurves))) {
196 if (!cmsPipelineInsertStage(Lut, cmsAT_END, cmsStageAllocToneCurves(ContextID, 1, &GrayTRC)) ||
197 !cmsPipelineInsertStage(Lut, cmsAT_END, cmsStageAllocMatrix(ContextID, 3, 1, GrayInputMatrix, NULL)))
201 return Lut;
209 cmsPipelineFree(Lut);
    [all...]
cmsxform.c 156 if (p -> Lut)
157 cmsPipelineFree(p -> Lut);
284 cmsPipelineEvalFloat(fIn, fOut, p->Lut);
290 cmsPipelineEvalFloat(fIn, fOut, p->Lut);
405 p->Lut->Eval16Fn(wIn, wOut, p->Lut->Data);
430 for (i=0; i < p ->Lut->OutputChannels; i++) {
436 p ->Lut ->Eval16Fn(wIn, wOut, p -> Lut->Data);
517 p->Lut->Eval16Fn(wIn, wOut, p->Lut->Data)
    [all...]
cmscnvrt.c 30 // Link several profiles to obtain a single LUT modelling the whole color transform. Intents, Black point
438 // Handle PCS mismatches. A specialized stage is added to the LUT in such case
531 cmsPipeline* Lut = NULL;
543 // Allocate an empty LUT for holding the result. 0 as channel count means 'undefined'
587 // read the LUT to be applied. Settings don't apply here.
590 // Get the involved LUT from the profile
591 Lut = _cmsReadDevicelinkLUT(hProfile, Intent);
592 if (Lut == NULL) goto Error;
611 Lut = _cmsReadInputLUT(hProfile, Intent);
612 if (Lut == NULL) goto Error
    [all...]
cmsopt.c 119 cmsBool _Remove1Op(cmsPipeline* Lut, cmsStageSignature UnaryOp)
121 cmsStage** pt = &Lut ->Elements;
139 cmsBool _Remove2Op(cmsPipeline* Lut, cmsStageSignature Op1, cmsStageSignature Op2)
145 pt1 = &Lut ->Elements;
188 cmsBool _MultiplyMatrix(cmsPipeline* Lut)
195 pt1 = &Lut->Elements;
230 cmsStage* Multmat = cmsStageAllocMatrix(Lut->ContextID, 3, 3, (const cmsFloat64Number*) &res, NULL);
251 cmsBool PreOptimize(cmsPipeline* Lut)
260 Opt |= _Remove1Op(Lut, cmsSigIdentityElemType);
263 Opt |= _Remove2Op(Lut, cmsSigXYZ2LabElemType, cmsSigLab2XYZElemType)
    [all...]
lcms2_internal.h 870 // LUT reading & creation -------------------------------------------------------------------------------------------
900 // LUT optimization ------------------------------------------------------------------------------------------------
911 cmsPipeline** Lut,
918 // Hi level LUT building ----------------------------------------------------------------------------------------------
    [all...]
cmstypes.c     [all...]

Completed in 57 milliseconds