summaryrefslogtreecommitdiff
path: root/clutter/clutter-feature.h
diff options
context:
space:
mode:
authorMatthew Allum <mallum@openedhand.com>2006-11-15 21:19:01 +0000
committerMatthew Allum <mallum@openedhand.com>2006-11-15 21:19:01 +0000
commit5ca4d3718d61805b1e4ee52758801d824e8517fa (patch)
tree0c73a971e38245b1cbe71fa7f8b66a5aeb4b2b46 /clutter/clutter-feature.h
parent3f62c72d077b46415aeb4f1dd4a51a2934aa5a7b (diff)
downloadclutter-5ca4d3718d61805b1e4ee52758801d824e8517fa.tar.gz
2006-11-15 Matthew Allum <mallum@openedhand.com>
* clutter/clutter-actor.h: * clutter/clutter-actor.c: Add new API clutter_actor_move_by(), clutter_actor_get_size() * clutter/clutter-alpha.c: * clutter/clutter-alpha.h: Add clutter alpha sine func * clutter/clutter-behaviours.h: * clutter/clutter-behaviours.c: Add a basic scale behaviour (needs work) * examples/behave.c: (main): More playing with new behaviour functionality * clutter/clutter-feature.c: * clutter/clutter-feature.h: * clutter/clutter-main.c: Add new experimental sync to vblank code Set env CLUTTER_VBLANK=none to disable.
Diffstat (limited to 'clutter/clutter-feature.h')
-rw-r--r--clutter/clutter-feature.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/clutter/clutter-feature.h b/clutter/clutter-feature.h
index d934bef23..faf632280 100644
--- a/clutter/clutter-feature.h
+++ b/clutter/clutter-feature.h
@@ -41,11 +41,13 @@ G_END_DECLS
typedef enum
{
- CLUTTER_FEATURE_TEXTURE_RECTANGLE = (1 << 1)
+ CLUTTER_FEATURE_TEXTURE_RECTANGLE = (1 << 1),
+ CLUTTER_FEATURE_SYNC_TO_VBLANK = (1 << 2)
} ClutterFeatureFlags;
gboolean clutter_feature_available (ClutterFeatureFlags flags);
ClutterFeatureFlags clutter_feature_get_all (void);
+void clutter_feature_wait_for_vblank ();
G_END_DECLS