Searched refs:srcMin (Results 1 – 1 of 1) sorted by relevance
/external/deqp/framework/randomshaders/ |
D | rsgExpression.cpp | 568 inline void convertValueRange (SrcType srcMin, SrcType srcMax, DstType& dstMin, DstType& dstMax) in convertValueRange() argument 570 dstMin = convert<SrcType, DstType>(srcMin); in convertValueRange() 575 inline void convertValueRange<float, int> (float srcMin, float srcMax, int& dstMin, int& dstMax) in convertValueRange() argument 577 if (Scalar::min<float>() == srcMin) in convertValueRange() 580 dstMin = (int)deFloatCeil(srcMin); in convertValueRange() 589 inline void convertValueRange<float, bool> (float srcMin, float srcMax, bool& dstMin, bool& dstMax) in convertValueRange() argument 591 dstMin = srcMin > 0.0f; in convertValueRange()
|