2007-05-17 Matthew Allum <mallum@openedhand.com>

* configure.ac:
        Fix CLUTTER_NO_FPU typo.
This commit is contained in:
Matthew Allum
2007-05-17 09:08:50 +00:00
parent 733a767657
commit 26646d255a
4 changed files with 26 additions and 4 deletions

View File

@ -68,7 +68,11 @@ typedef enum {
CLUTTER_ACTOR_IN_DESTRUCTION = 1 << 0,
CLUTTER_ACTOR_IS_TOPLEVEL = 1 << 1,
CLUTTER_ACTOR_IN_REPARENT = 1 << 2
CLUTTER_ACTOR_IN_REPARENT = 1 << 2,
CLUTTER_ACTOR_SYNC_MATRICES = 1 << 3 /* Used by stage to indicate GL
* viewport / perspective etc
* needs (re)setting.
*/
} ClutterPrivateFlags;
#define CLUTTER_PRIVATE_FLAGS(a) (CLUTTER_ACTOR ((a))->private_flags)