[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [24446] trunk/blender/source/blender/ blenlib/intern/math_color.c: Fix for math lib commit, had duplicate definitions of functions,

Brecht Van Lommel brecht at blender.org
Tue Nov 10 11:24:58 CET 2009


Revision: 24446
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=24446
Author:   blendix
Date:     2009-11-10 11:24:58 +0100 (Tue, 10 Nov 2009)

Log Message:
-----------
Fix for math lib commit, had duplicate definitions of functions,
giving build issues on some platforms.

Modified Paths:
--------------
    trunk/blender/source/blender/blenlib/intern/math_color.c

Modified: trunk/blender/source/blender/blenlib/intern/math_color.c
===================================================================
--- trunk/blender/source/blender/blenlib/intern/math_color.c	2009-11-10 09:50:39 UTC (rev 24445)
+++ trunk/blender/source/blender/blenlib/intern/math_color.c	2009-11-10 10:24:58 UTC (rev 24446)
@@ -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 @@
 
     return 0;                         /* Color within RGB gamut */
 }
+#endif
 





More information about the Bf-blender-cvs mailing list