* clutter/clutter-color.c (clutter_color_new): Remove CLAMP macros
authorNeil Roberts <neil@openedhand.com>
Wed, 5 Nov 2008 12:16:15 +0000 (12:16 +0000)
committerNeil Roberts <neil@openedhand.com>
Wed, 5 Nov 2008 12:16:15 +0000 (12:16 +0000)
around the component parameters because they are guint8 anyway so
the CLAMP is redundant and it causes a warning.

ChangeLog
clutter/clutter-color.c

index ebb8d88..572da5d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-11-05  Neil Roberts  <neil@linux.intel.com>
+
+       * clutter/clutter-color.c (clutter_color_new): Remove CLAMP macros
+       around the component parameters because they are guint8 anyway so
+       the CLAMP is redundant and it causes a warning.
+
 2008-11-04  Thomas Wood  <thomas@linux.intel.com>
 
        * clutter/clutter-color.c: Update ClutterColor documentation as
index 2d1d44d..411bb13 100644 (file)
@@ -689,10 +689,10 @@ clutter_color_new (guint8 red,
 
   color = g_slice_new (ClutterColor);
 
-  color->red   = CLAMP (red,   0, 255);
-  color->green = CLAMP (green, 0, 255);
-  color->blue  = CLAMP (blue,  0, 255);
-  color->alpha = CLAMP (alpha, 0, 255);
+  color->red   = red;
+  color->green = green;
+  color->blue  = blue;
+  color->alpha = alpha;
 
   return color;
 }