From 8b2c5e693c134cc5eb7d9a2da4f5d40cc06636ec Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Thu, 13 Jun 2013 17:11:09 +0000 Subject: Fix #35634: weight paint did not do z-buffer culling anymore on Windows after recent change to size of bool. --- source/blender/blenlib/BLI_math_vector.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/blenlib/BLI_math_vector.h') diff --git a/source/blender/blenlib/BLI_math_vector.h b/source/blender/blenlib/BLI_math_vector.h index 17c69d22337..0df4de1f829 100644 --- a/source/blender/blenlib/BLI_math_vector.h +++ b/source/blender/blenlib/BLI_math_vector.h @@ -149,14 +149,14 @@ MINLINE void star_m3_v3(float rmat[3][3], float a[3]); MINLINE float len_squared_v2(const float v[2]); MINLINE float len_squared_v3(const float v[3]); MINLINE float len_manhattan_v2(const float v[2]); -MINLINE float len_manhattan_v2_int(const int v[2]); +MINLINE int len_manhattan_v2_int(const int v[2]); MINLINE float len_manhattan_v3(const float v[3]); MINLINE float len_v2(const float a[2]); MINLINE float len_v2v2(const float a[2], const float b[2]); MINLINE float len_squared_v2v2(const float a[2], const float b[2]); MINLINE float len_squared_v3v3(const float a[3], const float b[3]); MINLINE float len_manhattan_v2v2(const float a[2], const float b[2]); -MINLINE float len_manhattan_v2v2_int(const int a[2], const int b[2]); +MINLINE int len_manhattan_v2v2_int(const int a[2], const int b[2]); MINLINE float len_manhattan_v3v3(const float a[3], const float b[3]); MINLINE float len_v3(const float a[3]); MINLINE float len_v3v3(const float a[3], const float b[3]); -- cgit v1.2.3