2006-05-29 Matthew Allum <mallum@openedhand.com>

* clutter/clutter-color.c: (clutter_color_set):
        Fix bit shifts in clutter color setters.
This commit is contained in:
Matthew Allum 2006-05-29 20:01:49 +00:00
parent 342ea125f1
commit 70ed2f4233
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2006-05-29 Matthew Allum <mallum@openedhand.com>
* clutter/clutter-color.c: (clutter_color_set):
Fix bit shifts in clutter color setters.
2006-05-29 Matthew Allum <mallum@openedhand.com>
* clutter/clutter-element.c:

View File

@ -28,7 +28,7 @@
ClutterColor
clutter_color_new (guint8 r, guint8 g, guint8 b, guint8 a)
{
return ( r | g << 8 | b << 16 | a << 24 );
return ( a | b << 8 | g << 16 | r << 24 );
}
void
@ -38,7 +38,7 @@ clutter_color_set (ClutterColor *color,
guint8 b,
guint8 a)
{
*color = ( r | g << 8 | b << 16 | a << 24 );
*color = ( a | b << 8 | g << 16 | r << 24 );
}
void