Home
last modified time | relevance | path

Searched refs:Curve1 (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/third_party/lcms2-2.6/
D0014-avoid-fixed-inf.patch50 @@ -1499,13 +1505,19 @@ cmsBool SetMatShaper(cmsPipeline* Dest, cmsToneCurve* Curve1[3], cmsMAT3* M…
54 - FillFirstShaper(p ->Shaper1R, Curve1[0]);
55 - FillFirstShaper(p ->Shaper1G, Curve1[1]);
56 - FillFirstShaper(p ->Shaper1B, Curve1[2]);
57 + if (!FillFirstShaper(p ->Shaper1R, Curve1[0]))
59 + if (!FillFirstShaper(p ->Shaper1G, Curve1[1]))
61 + if (!FillFirstShaper(p ->Shaper1B, Curve1[2]))
76 @@ -1531,6 +1543,9 @@ cmsBool SetMatShaper(cmsPipeline* Dest, cmsToneCurve* Curve1[3], cmsMAT3* Mat…
/external/pdfium/third_party/lcms2-2.6/src/
Dcmsopt.c1495 cmsBool SetMatShaper(cmsPipeline* Dest, cmsToneCurve* Curve1[3], cmsMAT3* Mat, cmsVEC3* Off, cmsTon… in SetMatShaper()
1508 if (!FillFirstShaper(p ->Shaper1R, Curve1[0])) in SetMatShaper()
1510 if (!FillFirstShaper(p ->Shaper1G, Curve1[1])) in SetMatShaper()
1512 if (!FillFirstShaper(p ->Shaper1B, Curve1[2])) in SetMatShaper()
1556 cmsStage* Curve1, *Curve2; in OptimizeMatrixShaper() local
1576 &Curve1, &Matrix1, &Matrix2, &Curve2)) return FALSE; in OptimizeMatrixShaper()
1601 if (!cmsPipelineInsertStage(Dest, cmsAT_BEGIN, cmsStageDup(Curve1))) in OptimizeMatrixShaper()
1616 _cmsStageToneCurvesData* mpeC1 = (_cmsStageToneCurvesData*) cmsStageData(Curve1); in OptimizeMatrixShaper()