Searched refs:srcMax (Results 1 – 1 of 1) sorted by relevance
/external/deqp/framework/randomshaders/ |
D | rsgExpression.cpp | 542 inline void convertValueRange (SrcType srcMin, SrcType srcMax, DstType& dstMin, DstType& dstMax) in convertValueRange() argument 545 dstMax = convert<SrcType, DstType>(srcMax); in convertValueRange() 549 inline void convertValueRange<float, int> (float srcMin, float srcMax, int& dstMin, int& dstMax) in convertValueRange() argument 556 if (Scalar::max<float>() == srcMax) in convertValueRange() 559 dstMax = (int)deFloatFloor(srcMax); in convertValueRange() 563 inline void convertValueRange<float, bool> (float srcMin, float srcMax, bool& dstMin, bool& dstMax) in convertValueRange() argument 566 dstMax = srcMax > 0.0f; in convertValueRange()
|