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:
parent
342ea125f1
commit
70ed2f4233
@ -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:
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user