util/miscmath: deprecate iclamp and clampf
This commit is contained in:
parent
68f3678575
commit
ee09f33a5f
1 changed files with 2 additions and 2 deletions
|
@ -49,8 +49,8 @@ intmax_t imin(intmax_t, intmax_t) attr_const attr_deprecated("Use min() instead"
|
|||
intmax_t imax(intmax_t, intmax_t) attr_const attr_deprecated("Use max() instead");
|
||||
uintmax_t umin(uintmax_t, uintmax_t) attr_const attr_deprecated("Use min() instead");
|
||||
uintmax_t umax(uintmax_t, uintmax_t) attr_const attr_deprecated("Use max() instead");
|
||||
intmax_t iclamp(intmax_t, intmax_t, intmax_t) attr_const;
|
||||
float clampf(float, float, float) attr_const;
|
||||
intmax_t iclamp(intmax_t, intmax_t, intmax_t) attr_const attr_deprecated("Use clamp() instead");
|
||||
float clampf(float, float, float) attr_const attr_deprecated("Use clamp() instead");
|
||||
double smoothstep(double edge0, double edge1, double x) attr_const;
|
||||
double smoothmin(double a, double b, double k) attr_const;
|
||||
double approach(double v, double t, double d) attr_const;
|
||||
|
|
Loading…
Reference in a new issue