Searched defs:srcMin (Results 1 - 1 of 1) sorted by relevance

/external/deqp/framework/randomshaders/
H A DrsgExpression.cpp543 inline void convertValueRange (SrcType srcMin, SrcType srcMax, DstType& dstMin, DstType& dstMax) argument
545 dstMin = convert<SrcType, DstType>(srcMin);
550 inline void convertValueRange<float, int> (float srcMin, float srcMax, int& dstMin, int& dstMax) argument
552 if (Scalar::min<float>() == srcMin)
555 dstMin = (int)deFloatCeil(srcMin);
564 inline void convertValueRange<float, bool> (float srcMin, float srcMax, bool& dstMin, bool& dstMax) argument
566 dstMin = srcMin > 0.0f;

Completed in 51 milliseconds