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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2013-06-13 21:11:09 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2013-06-13 21:11:09 +0400
commit8b2c5e693c134cc5eb7d9a2da4f5d40cc06636ec (patch)
tree7b0888adc1ddd73d4222da5a1aa9377772adc70e /source/blender/blenlib/intern/math_vector_inline.c
parentbb61b4628039c0d3162182801666ac0df99e6165 (diff)
Fix #35634: weight paint did not do z-buffer culling anymore on Windows after recent change to size of bool.
Diffstat (limited to 'source/blender/blenlib/intern/math_vector_inline.c')
-rw-r--r--source/blender/blenlib/intern/math_vector_inline.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/intern/math_vector_inline.c b/source/blender/blenlib/intern/math_vector_inline.c
index 216057f79c5..d77b1ecf017 100644
--- a/source/blender/blenlib/intern/math_vector_inline.c
+++ b/source/blender/blenlib/intern/math_vector_inline.c
@@ -594,7 +594,7 @@ MINLINE float len_manhattan_v2(const float v[2])
return fabsf(v[0]) + fabsf(v[1]);
}
-MINLINE float len_manhattan_v2_int(const int v[2])
+MINLINE int len_manhattan_v2_int(const int v[2])
{
return ABS(v[0]) + ABS(v[1]);
}
@@ -647,7 +647,7 @@ MINLINE float len_manhattan_v2v2(const float a[2], const float b[2])
return len_manhattan_v2(d);
}
-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])
{
int d[2];