diff options
author | Matthew Allum <mallum@openedhand.com> | 2006-11-22 20:52:27 +0000 |
---|---|---|
committer | Matthew Allum <mallum@openedhand.com> | 2006-11-22 20:52:27 +0000 |
commit | c57108e03029eeb4f5ccb14754cf7469f745d610 (patch) | |
tree | e6a6c50fc220072fe7a264cf1cd09aa81d21ff68 /clutter/clutter-feature.c | |
parent | dae4375d08dce33b0f65f303bd5ae6edaecef3cb (diff) | |
download | clutter-c57108e03029eeb4f5ccb14754cf7469f745d610.tar.gz |
2006-11-22 Matthew Allum <mallum@openedhand.com>
* clutter/clutter-actor.c:
* clutter/clutter-alpha.c:
* clutter/clutter-behaviour-opacity.c:
* clutter/clutter-behaviour-scale.c:
* clutter/clutter-clone-texture.c:
* clutter/clutter-feature.c:
* clutter/clutter-label.c:
* clutter/clutter-main.c:
* clutter/clutter-stage.c:
* clutter/clutter-texture.c
* clutter/clutter-timeline.c:
* clutter/clutter-debug.h:
Make CLUTTER_NOTE() just take a string rather than a func.
Add more default context to output.
* configure.ac:
Fix flag and add more help docs for --ebable-debug option.
Diffstat (limited to 'clutter/clutter-feature.c')
-rw-r--r-- | clutter/clutter-feature.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clutter/clutter-feature.c b/clutter/clutter-feature.c index 4655a8251..cb73d4425 100644 --- a/clutter/clutter-feature.c +++ b/clutter/clutter-feature.c @@ -224,7 +224,7 @@ clutter_feature_init (void) if (getenv("__GL_SYNC_TO_VBLANK") || check_vblank_env("none")) { - CLUTTER_NOTE (MISC, g_message ("vblank sync: disabled at user request")); + CLUTTER_NOTE (MISC, "vblank sync: disabled at user request"); } else { @@ -240,7 +240,7 @@ clutter_feature_init (void) if (__features->funcs.get_video_sync != NULL && __features->funcs.wait_video_sync != NULL) { - CLUTTER_NOTE (MISC, g_message ("vblank sync: using glx")); + CLUTTER_NOTE (MISC, "vblank sync: using glx"); __features->vblank_type = CLUTTER_VBLANK_GLX; __features->flags |= CLUTTER_FEATURE_SYNC_TO_VBLANK; @@ -252,7 +252,7 @@ clutter_feature_init (void) __features->dri_fd = open("/dev/dri/card0", O_RDWR); if (__features->dri_fd >= 0) { - CLUTTER_NOTE (MISC, g_message ("vblank sync: using dri")); + CLUTTER_NOTE (MISC, "vblank sync: using dri"); __features->vblank_type = CLUTTER_VBLANK_DRI; __features->flags |= CLUTTER_FEATURE_SYNC_TO_VBLANK; @@ -262,7 +262,7 @@ clutter_feature_init (void) if (!(__features->flags & CLUTTER_FEATURE_SYNC_TO_VBLANK)) { CLUTTER_NOTE (MISC, - g_message ("vblank sync: no use-able mechanism found")); + "vblank sync: no use-able mechanism found"); } } } |