Searched defs:dE2 (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmsgmt.c249 cmsFloat64Number dE1, dE2, ErrorRatio; local
253 dE2 = 0;
277 dE2 = cmsDeltaE(&LabIn2, &LabOut2);
280 // if dE1 is small and dE2 is small, value is likely to be in gamut
281 if (dE1 < t->Thereshold && dE2 < t->Thereshold)
285 // if dE1 is small and dE2 is big, undefined. Assume in gamut
286 if (dE1 < t->Thereshold && dE2 > t->Thereshold)
289 // dE1 is big and dE2 is small, clearly out of gamut
290 if (dE1 > t->Thereshold && dE2 < t->Thereshold)
294 // dE1 is big and dE2 i
[all...]

Completed in 32 milliseconds