Searched refs:clampValues (Results 1 - 2 of 2) sorted by relevance
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuTexCompareVerifier.cpp | 65 const bool clampValues = isFixedPoint; // if comparing against a floating point texture, ref (and value) is not clamped 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()
|
H A D | tcuTexture.cpp | 2003 const bool clampValues = isFixedPoint; // if comparing against a floating point texture, ref (and value) is not clamped in execCompare() local 2004 const float cmp = (clampValues) ? (de::clamp(color[chanNdx], 0.0f, 1.0f)) : (color[chanNdx]); in execCompare() 2005 const float ref = (clampValues) ? (de::clamp(ref_, 0.0f, 1.0f)) : (ref_); in execCompare()
|
Completed in 9 milliseconds