debug: Remove CLUTTER_MARK

The debug macro is seldom used, and it's a bit lame at that.
This commit is contained in:
Emmanuele Bassi
2011-11-18 17:30:39 +00:00
parent ecdb12ecc3
commit 2d76407016
3 changed files with 0 additions and 15 deletions

View File

@ -71,8 +71,6 @@ typedef enum {
} } G_STMT_END
#endif
#define CLUTTER_MARK() CLUTTER_NOTE(MISC, "== mark ==")
#define CLUTTER_GLERR() G_STMT_START { \
if (clutter_debug_flags & CLUTTER_DEBUG_GL) { \
GLenum _err = glGetError (); /* roundtrip */ \
@ -84,7 +82,6 @@ typedef enum {
#else /* !CLUTTER_ENABLE_DEBUG */
#define CLUTTER_NOTE(type,...) G_STMT_START { } G_STMT_END
#define CLUTTER_MARK() G_STMT_START { } G_STMT_END
#define CLUTTER_GLERR() G_STMT_START { } G_STMT_END
#define CLUTTER_HAS_DEBUG(type) FALSE