Searched refs:clampValues (Results 1 - 2 of 2) sorted by relevance

/external/deqp/framework/common/
H A DtcuTexCompareVerifier.cpp65 const bool clampValues = isFixedPoint; // if comparing against a floating point texture, ref (and value) is not clamped local
66 const float cmpValue = (clampValues) ? (de::clamp(cmpValue_, 0.0f, 1.0f)) : (cmpValue_);
67 const float cmpReference = (clampValues) ? (de::clamp(cmpReference_, 0.0f, 1.0f)) : (cmpReference_);
H A DtcuTexture.cpp1718 const bool clampValues = isFixedPoint; // if comparing against a floating point texture, ref (and value) is not clamped local
1719 const float cmp = (clampValues) ? (de::clamp(color[chanNdx], 0.0f, 1.0f)) : (color[chanNdx]);
1720 const float ref = (clampValues) ? (de::clamp(ref_, 0.0f, 1.0f)) : (ref_);

Completed in 146 milliseconds