Emmanuele Bassi
22259e0965
actor: Define the scene structure inside Actor
...
Instead of storing the list of children, let's turn Actor inside a
proper node of a tree.
This change adds the following members to the Actor private data
structure:
first_child
last_child
prev_sibling
next_sibling
and removes the "children" GList from it; iteration is performed through
the direct pointers to the siblings and children.
This change makes removal, insertion before a sibling, and insertion
after a sibling constant time operations, but it still retains the
feature of ClutterActor.add_child() to build the list of children while
taking into account the depth set on the newly added child, to allow the
default painter's algorithm we employ inside the paint() implementation
to at least try and cope with the :depth property (albeit in a fairly
naïve way). Changes in the :depth property will not change the paint
sequence any more: this functionality will be restored later.
2012-01-16 23:37:09 +00:00
..
2012-01-16 23:35:16 +00:00
2011-11-10 19:05:39 +01:00
2011-11-18 22:06:30 +01:00
2012-01-16 23:35:17 +00:00
2011-12-08 16:13:37 +00:00
2011-12-08 16:13:38 +00:00
2011-11-10 14:55:03 +00:00
2012-01-07 10:42:09 +00:00
2011-11-03 13:45:20 +00:00
2012-01-10 17:30:57 +00:00
2011-11-14 11:06:28 +00:00
2011-12-12 17:29:58 +00:00
2010-05-26 14:09:24 +01:00
2011-09-29 19:34:32 +02:00
2010-10-25 23:44:53 +01:00
2011-09-29 19:34:24 +02:00
2011-10-01 12:40:11 +02:00
2011-06-07 16:06:24 +01:00
2012-01-16 23:35:17 +00:00
2012-01-16 23:37:09 +00:00
2012-01-16 23:35:16 +00:00
2011-10-15 18:36:27 +01:00
2011-10-11 17:59:46 +01:00
2011-09-12 13:12:14 +01:00
2011-10-11 23:02:17 +01:00
2011-09-12 13:12:14 +01:00
2011-11-02 13:00:46 +00:00
2011-10-07 16:56:21 +01:00
2010-09-10 11:18:53 +01:00
2011-09-07 16:14:10 +01:00
2011-10-11 17:59:46 +01:00
2012-01-12 13:35:09 +00:00
2012-01-12 13:35:09 +00:00
2011-11-03 13:45:20 +00:00
2011-10-17 10:24:25 +01:00
2011-08-29 22:43:42 +01:00
2011-10-11 17:59:46 +01:00
2011-09-02 15:48:27 +01:00
2011-10-11 17:59:46 +01:00
2011-06-07 16:06:24 +01:00
2011-06-07 16:06:24 +01:00
2011-10-19 15:27:03 +01:00
2011-01-20 16:35:26 +00:00
2011-10-07 11:53:02 +01:00
2011-10-11 17:59:46 +01:00
2011-11-18 17:23:56 +00:00
2011-11-02 13:00:46 +00:00
2011-03-03 11:47:49 +00:00
2011-09-12 13:12:14 +01:00
2012-01-12 10:27:17 +00:00
2011-10-11 17:59:46 +01:00
2011-10-19 15:23:55 +01:00
2011-10-19 15:23:55 +01:00
2011-09-05 17:22:14 +01:00
2011-11-10 14:13:45 +00:00
2011-10-11 17:59:46 +01:00
2011-11-28 18:30:18 +00:00
2011-02-16 14:11:59 +00:00
2011-01-19 14:33:27 +00:00
2011-11-14 13:33:04 +08:00
2011-03-01 19:04:31 +00:00
2011-09-29 19:34:31 +02:00
2011-07-29 13:06:51 +01:00
2011-02-11 16:45:45 +00:00
2011-11-18 17:54:19 +00:00
2012-01-12 10:34:26 +00:00
2010-11-18 18:23:49 +00:00
2012-01-16 23:35:17 +00:00
2011-11-28 18:30:18 +00:00
2011-01-20 16:35:26 +00:00
2011-12-08 16:13:37 +00:00
2011-11-10 14:55:03 +00:00
2011-01-21 10:25:43 +00:00
2012-01-12 10:34:50 +00:00
2011-10-11 17:59:46 +01:00
2012-01-12 10:39:59 +00:00
2011-06-20 15:25:54 +01:00
2011-06-13 16:00:45 +01:00
2011-09-12 13:12:14 +01:00
2011-10-11 17:59:46 +01:00
2012-01-16 23:35:13 +00:00
2011-02-28 14:16:23 +00:00
2011-01-21 10:25:43 +00:00
2011-01-21 10:25:43 +00:00
2011-06-07 16:06:24 +01:00
2012-01-03 12:05:10 +00:00
2010-10-21 12:22:17 +01:00
2011-10-11 17:59:46 +01:00
2011-12-09 16:24:04 +00:00
2011-05-13 01:46:32 +01:00
2011-05-13 01:46:32 +01:00
2012-01-16 23:35:16 +00:00
2011-10-11 17:59:46 +01:00
2012-01-12 10:49:16 +00:00
2011-06-13 15:36:07 +01:00
2012-01-16 23:35:16 +00:00
2011-05-26 08:48:13 -04:00
2011-02-18 15:53:27 +00:00
2011-12-08 16:13:37 +00:00
2011-10-11 17:59:46 +01:00
2011-07-26 13:44:12 +01:00
2011-06-07 16:06:24 +01:00
2011-10-12 17:25:37 +08:00
2011-11-03 14:42:39 +00:00
2011-11-03 14:42:39 +00:00
2011-11-03 16:05:36 +00:00
2012-01-16 23:35:13 +00:00
2010-08-10 17:12:06 +01:00
2009-12-02 11:36:25 +00:00
2011-07-26 13:44:12 +01:00
2011-12-28 09:37:53 +00:00
2011-11-15 17:58:25 +00:00
2011-06-20 15:25:53 +01:00
2011-11-14 17:16:27 +00:00
2011-07-04 15:58:08 +01:00
2010-05-19 16:10:05 +01:00
2011-10-11 23:42:23 +01:00
2011-06-07 16:06:24 +01:00
2011-02-28 14:34:36 +00:00
2011-11-28 15:42:35 +00:00
2011-02-28 14:34:36 +00:00
2011-03-03 11:47:49 +00:00
2011-01-20 16:35:26 +00:00
2011-03-07 13:26:20 +00:00
2012-01-16 21:06:19 +00:00
2011-03-03 11:47:49 +00:00
2011-01-20 16:35:26 +00:00
2011-12-01 10:55:13 +00:00
2011-10-11 17:59:46 +01:00
2012-01-16 21:06:19 +00:00
2011-11-18 17:44:42 +00:00
2011-11-18 17:44:42 +00:00
2011-11-10 15:37:51 +00:00
2011-09-07 16:14:10 +01:00
2011-11-25 10:54:54 +01:00
2011-10-11 17:59:50 +01:00
2011-06-07 16:06:24 +01:00
2011-06-07 16:06:24 +01:00
2011-10-11 17:52:17 +01:00
2011-10-11 22:45:14 +01:00
2011-01-20 16:35:26 +00:00
2011-12-01 10:57:22 +00:00
2011-09-30 11:51:37 +01:00
2011-06-07 16:06:24 +01:00
2011-06-07 16:06:24 +01:00
2011-07-18 13:43:29 +01:00
2011-10-11 17:59:46 +01:00
2010-10-21 13:13:00 +01:00
2011-11-14 15:43:20 +00:00
2011-11-02 13:00:46 +00:00
2011-09-26 12:05:55 +01:00
2011-11-10 14:55:03 +00:00
2011-11-03 13:45:19 +00:00
2012-01-16 23:35:14 +00:00
2012-01-03 13:50:06 +00:00
2011-12-01 10:39:11 +00:00
2011-10-11 17:59:50 +01:00
2011-06-10 15:15:15 +01:00
2011-10-11 17:59:46 +01:00
2011-08-29 22:43:42 +01:00
2011-10-11 17:59:46 +01:00
2012-01-12 10:40:38 +00:00
2011-06-13 16:15:22 +01:00
2012-01-16 23:35:13 +00:00
2011-11-02 13:00:46 +00:00
2011-11-27 12:19:39 +00:00
2011-10-11 17:59:50 +01:00
2012-01-16 23:35:14 +00:00
2011-06-07 16:06:24 +01:00
2011-10-11 17:59:46 +01:00
2011-09-26 12:05:55 +01:00
2011-11-02 13:00:47 +00:00
2011-11-03 13:45:20 +00:00
2011-11-07 12:12:53 +08:00
2012-01-16 23:35:17 +00:00
2012-01-11 12:23:46 +00:00
2011-12-13 12:44:27 +08:00
2012-01-16 23:35:17 +00:00