Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <bastien@blender.org>2020-04-14 12:29:10 +0300
committerBastien Montagne <bastien@blender.org>2020-04-14 12:29:46 +0300
commit6e272b9ba429dc7f4fc7724f19254b1021a9559b (patch)
tree8395a317e3bb985af0bddd0347c6bc7550f1f307 /source/blender/blenlib/BLI_math_base.h
parent47084bac9f3c4c95b6fa3e3c3d5b1e661b2bec47 (diff)
BLI_math: add min/max utils for chars.
Diffstat (limited to 'source/blender/blenlib/BLI_math_base.h')
-rw-r--r--source/blender/blenlib/BLI_math_base.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_math_base.h b/source/blender/blenlib/BLI_math_base.h
index 7a9d17d2b05..ae9617d2f16 100644
--- a/source/blender/blenlib/BLI_math_base.h
+++ b/source/blender/blenlib/BLI_math_base.h
@@ -151,6 +151,9 @@ MINLINE int max_iiii(int a, int b, int c, int d);
MINLINE size_t min_zz(size_t a, size_t b);
MINLINE size_t max_zz(size_t a, size_t b);
+MINLINE char min_cc(char a, char b);
+MINLINE char max_cc(char a, char b);
+
MINLINE int clamp_i(int value, int min, int max);
MINLINE float clamp_f(float value, float min, float max);
MINLINE size_t clamp_z(size_t value, size_t min, size_t max);