From da8619fe23d22a5009868302bac05d965adb76ac Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 15 Jan 2014 12:31:30 +1100 Subject: Math Lib: add iroundf function for: (int)floorf(a + 0.5f) --- source/blender/blenlib/BLI_math_base.h | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender/blenlib/BLI_math_base.h') diff --git a/source/blender/blenlib/BLI_math_base.h b/source/blender/blenlib/BLI_math_base.h index c634c9d8228..883f01d4eb6 100644 --- a/source/blender/blenlib/BLI_math_base.h +++ b/source/blender/blenlib/BLI_math_base.h @@ -231,6 +231,7 @@ MINLINE int is_power_of_2_i(int n); MINLINE int power_of_2_max_i(int n); MINLINE int power_of_2_min_i(int n); +MINLINE int iroundf(float a); MINLINE int divide_round_i(int a, int b); MINLINE int mod_i(int i, int n); -- cgit v1.2.3