matrix: Fix the init_with_matrix() implementation
As usual, I swapped the memcpy() arguments around.
This commit is contained in:
parent
e9bcb4cf6e
commit
f7dd2d3746
@ -1377,9 +1377,7 @@ clutter_matrix_init_from_array (ClutterMatrix *matrix,
|
||||
*/
|
||||
ClutterMatrix *
|
||||
clutter_matrix_init_from_matrix (ClutterMatrix *a,
|
||||
ClutterMatrix *b)
|
||||
const ClutterMatrix *b)
|
||||
{
|
||||
memcpy (b, a, sizeof (ClutterMatrix));
|
||||
|
||||
return a;
|
||||
return memcpy (a, b, sizeof (ClutterMatrix));
|
||||
}
|
||||
|
@ -701,7 +701,7 @@ ClutterMatrix * clutter_matrix_init_identity (ClutterMatrix *matrix);
|
||||
ClutterMatrix * clutter_matrix_init_from_array (ClutterMatrix *matrix,
|
||||
const float values[16]);
|
||||
ClutterMatrix * clutter_matrix_init_from_matrix (ClutterMatrix *a,
|
||||
ClutterMatrix *b);
|
||||
const ClutterMatrix *b);
|
||||
void clutter_matrix_free (ClutterMatrix *matrix);
|
||||
|
||||
G_END_DECLS
|
||||
|
Loading…
x
Reference in New Issue
Block a user