Home | History | Annotate | Download | only in rs

Lines Matching full:low

348 static float SC_clampf(float amount, float low, float high)
350 return amount < low ? low : (amount > high ? high : amount);
353 static int SC_clamp(int amount, int low, int high)
355 return amount < low ? low : (amount > high ? high : amount);