summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Lespiau <damien.lespiau@intel.com>2012-10-06 01:25:27 +0100
committerDamien Lespiau <damien.lespiau@intel.com>2012-10-08 13:46:44 +0100
commit015c36af27a8ce68d60f8aab6a10acdc48c5f38c (patch)
tree488ce2814bea582ea6ecb8d70e7e50a2966c25ea
parentb6ca999dd6478c40441bf3732556f3f8b80b2e40 (diff)
downloadcogl-015c36af27a8ce68d60f8aab6a10acdc48c5f38c.tar.gz
context: glib-mkenums chokes on /*< private >*/ but supports /*< skip >*/
The private option is really part of gtk-doc, glib-mkenums does not support it. Use skip instead. Reviewed-by: Robert Bragg <robert@linux.intel.com>
-rw-r--r--cogl/cogl-context.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/cogl/cogl-context.h b/cogl/cogl-context.h
index 060d4972..daade97d 100644
--- a/cogl/cogl-context.h
+++ b/cogl/cogl-context.h
@@ -234,8 +234,7 @@ typedef enum _CoglFeatureID
COGL_FEATURE_ID_GLES2_CONTEXT,
COGL_FEATURE_ID_DEPTH_TEXTURE,
- /*< private > */
- _COGL_N_FEATURE_IDS
+ _COGL_N_FEATURE_IDS /*< skip >*/
} CoglFeatureID;