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
path: root/source
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2009-11-10 13:24:58 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-11-10 13:24:58 +0300
commit14f9e686fa7b729a36549778fcf8e2cfd31bf424 (patch)
tree6399ee6f5d88a159a39fd1ebfcb1dc7ff57d61c1 /source
parent89c2e6c803b4d63458f2008455ca5fe4b4bc47fc (diff)
Fix for math lib commit, had duplicate definitions of functions,
giving build issues on some platforms.
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenlib/intern/math_color.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenlib/intern/math_color.c b/source/blender/blenlib/intern/math_color.c
index 7ae380a1dde..3b3801a197f 100644
--- a/source/blender/blenlib/intern/math_color.c
+++ b/source/blender/blenlib/intern/math_color.c
@@ -32,6 +32,7 @@
#include "BLI_math.h"
+#if 0
void hsv_to_rgb(float h, float s, float v, float *r, float *g, float *b)
{
int i;
@@ -310,4 +311,5 @@ int constrain_rgb(float *r, float *g, float *b)
return 0; /* Color within RGB gamut */
}
+#endif