Home | History | Annotate | Download | only in randomshaders

Lines Matching refs:dstMin

543 inline void convertValueRange (SrcType srcMin, SrcType srcMax, DstType& dstMin, DstType& dstMax)
545 dstMin = convert<SrcType, DstType>(srcMin);
550 inline void convertValueRange<float, int> (float srcMin, float srcMax, int& dstMin, int& dstMax)
553 dstMin = Scalar::min<int>().as<int>();
555 dstMin = (int)deFloatCeil(srcMin);
564 dstMin, bool& dstMax)
566 dstMin = srcMin > 0.0f;