Lines Matching refs:getMinValueWithinError
229 float getMinValueWithinError (float value, deUint32 ulp) in getMinValueWithinError() function
357 const float kaMin = getMinFlushToZero(getMinValueWithinError(ka, barycentricError)); in calcTriangleInterpolationWeights()
358 const float kbMin = getMinFlushToZero(getMinValueWithinError(kb, barycentricError)); in calcTriangleInterpolationWeights()
359 const float kcMin = getMinFlushToZero(getMinValueWithinError(kc, barycentricError)); in calcTriangleInterpolationWeights()
373 getMinFlushToZero(getMinValueWithinError(getMinFlushToZero(kaMin / p0.w()), divError)), in calcTriangleInterpolationWeights()
374 getMinFlushToZero(getMinValueWithinError(getMinFlushToZero(kbMin / p1.w()), divError)), in calcTriangleInterpolationWeights()
375 getMinFlushToZero(getMinValueWithinError(getMinFlushToZero(kcMin / p2.w()), divError)), in calcTriangleInterpolationWeights()
382 …const float minDivisor = getMinFlushToZero(getMinValueWithinError(minPreDivisionValues[0] + minPre… in calcTriangleInterpolationWeights()
390 …returnValue.min.x() = getMinFlushToZero(getMinValueWithinError(getMinFlushToZero(minimalRangeDivis… in calcTriangleInterpolationWeights()
391 …returnValue.min.y() = getMinFlushToZero(getMinValueWithinError(getMinFlushToZero(minimalRangeDivis… in calcTriangleInterpolationWeights()
392 …returnValue.min.z() = getMinFlushToZero(getMinValueWithinError(getMinFlushToZero(minimalRangeDivis… in calcTriangleInterpolationWeights()
414 const float dividendMin = getMinValueWithinError(dividend, 1); in calcLineInterpolationWeights()
420 const float divisorMin = getMinValueWithinError(divisor, 1); in calcLineInterpolationWeights()
425 …const float tMin = getMinValueWithinError(minimalRangeDivision(dividendMin, dividendMax, divisor… in calcLineInterpolationWeights()
429 …const float perspectiveTMin = getMinValueWithinError(minimalRangeDivision(tMin, tMax, wb, wb), … in calcLineInterpolationWeights()
433 …const float perspectiveInvTMin = getMinValueWithinError(minimalRangeDivision((1.0f - tMax), (1.0… in calcLineInterpolationWeights()
437 …const float perspectiveDivisorMin = getMinValueWithinError(perspectiveTMin + perspectiveInvTMin, … in calcLineInterpolationWeights()
443 …returnValue.min.x() = getMinValueWithinError(minimalRangeDivision(perspectiveInvTMin, perspectiveI… in calcLineInterpolationWeights()
444 …returnValue.min.y() = getMinValueWithinError(minimalRangeDivision(perspectiveTMin, perspectiveTMa… in calcLineInterpolationWeights()
472 const float dividendMin = getMinValueWithinError(dividend, 1); in calcLineInterpolationWeightsAxisProjected()
478 const float divisorMin = getMinValueWithinError(divisor, 1); in calcLineInterpolationWeightsAxisProjected()
483 …const float tMin = getMinValueWithinError(minimalRangeDivision(dividendMin, dividendMax, divisor… in calcLineInterpolationWeightsAxisProjected()
487 …const float perspectiveTMin = getMinValueWithinError(minimalRangeDivision(tMin, tMax, wb, wb), … in calcLineInterpolationWeightsAxisProjected()
491 …const float perspectiveInvTMin = getMinValueWithinError(minimalRangeDivision((1.0f - tMax), (1.0… in calcLineInterpolationWeightsAxisProjected()
495 …const float perspectiveDivisorMin = getMinValueWithinError(perspectiveTMin + perspectiveInvTMin, … in calcLineInterpolationWeightsAxisProjected()
501 …returnValue.min.x() = getMinValueWithinError(minimalRangeDivision(perspectiveInvTMin, perspectiveI… in calcLineInterpolationWeightsAxisProjected()
502 …returnValue.min.y() = getMinValueWithinError(minimalRangeDivision(perspectiveTMin, perspectiveTMa… in calcLineInterpolationWeightsAxisProjected()