Searched refs:srcMin (Results 1 – 1 of 1) sorted by relevance
/external/deqp/framework/randomshaders/ |
D | rsgExpression.cpp | 543 inline void convertValueRange (SrcType srcMin, SrcType srcMax, DstType& dstMin, DstType& dstMax) in convertValueRange() argument 545 dstMin = convert<SrcType, DstType>(srcMin); in convertValueRange() 550 inline void convertValueRange<float, int> (float srcMin, float srcMax, int& dstMin, int& dstMax) in convertValueRange() argument 552 if (Scalar::min<float>() == srcMin) in convertValueRange() 555 dstMin = (int)deFloatCeil(srcMin); in convertValueRange() 564 inline void convertValueRange<float, bool> (float srcMin, float srcMax, bool& dstMin, bool& dstMax) in convertValueRange() argument 566 dstMin = srcMin > 0.0f; in convertValueRange()
|