Home
last modified time | relevance | path

Searched refs:high (Results 1 – 2 of 2) sorted by relevance

/CTR-SDK-1.0.0/CTR_SDK/include/nn/math/
Dmath_Utility.h78 inline T Clamp(T x, T low, T high) in Clamp() argument
80 return (x >= high) ? high : ((x <= low) ? low: x); in Clamp()
/CTR-SDK-1.0.0/CTR_SDK/include/nn/util/
Dutil_Color.h995 void Clamp( f32 low, f32 high ) in Clamp()
997 r = nn::math::Clamp( r, low, high ); in Clamp()
998 g = nn::math::Clamp( g, low, high ); in Clamp()
999 b = nn::math::Clamp( b, low, high ); in Clamp()
1000 a = nn::math::Clamp( a, low, high ); in Clamp()