Home
last modified time | relevance | path

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

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