2007-10-27 Emmanuele Bassi <ebassi@openedhand.com>
authorEmmanuele Bassi <ebassi@openedhand.com>
Sat, 27 Oct 2007 12:26:12 +0000 (12:26 +0000)
committerEmmanuele Bassi <ebassi@openedhand.com>
Sat, 27 Oct 2007 12:26:12 +0000 (12:26 +0000)
* clutter/clutter-rectangle.c (clutter_rectangle_paint): Use
CGL_ENABLE_BLEND flag instead of CGL_BLEND value. (#580,
Gwenole Beauchesne)

ChangeLog
clutter/clutter-rectangle.c

index e9b8555..709600d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2007-10-27  Emmanuele Bassi  <ebassi@openedhand.com>
 
+       * clutter/clutter-rectangle.c (clutter_rectangle_paint): Use
+       CGL_ENABLE_BLEND flag instead of CGL_BLEND value. (#580,
+       Gwenole Beauchesne)
+
+2007-10-27  Emmanuele Bassi  <ebassi@openedhand.com>
+
        * clutter/clutter-color.c (clutter_color_to_string): Update the
        documentation for the format of the returned string, and remove
        the note: now clutter_color_parse() can parse the string this
index 97daf0f..262684f 100644 (file)
@@ -84,7 +84,7 @@ clutter_rectangle_paint (ClutterActor *self)
                                               : "unknown");
   cogl_push_matrix();
 
-  cogl_enable (CGL_BLEND);
+  cogl_enable (CGL_ENABLE_BLEND);
 
   clutter_actor_get_geometry (self, &geom);