Fix for math lib commit, had duplicate definitions of functions,

giving build issues on some platforms.
This commit is contained in:
Brecht Van Lommel
2009-11-10 10:24:58 +00:00
parent 89c2e6c803
commit 14f9e686fa

View File

@@ -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