From 892aa455138c692b464b3bce37a548e33d68e083 Mon Sep 17 00:00:00 2001 From: Damien Lespiau Date: Fri, 9 Jul 2010 15:59:14 +0100 Subject: [PATCH] cogl: Add Stability tag to new experimental API Functions guarded with COGL_ENABLE_EXPERIMENTAL API should be also maked as being Unstable with the Stability gtk-doc tag. Fixes: http://bugzilla.clutter-project.org/show_bug.cgi?id=2175 --- clutter/cogl/cogl/cogl-material.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/clutter/cogl/cogl/cogl-material.h b/clutter/cogl/cogl/cogl-material.h index c9c9763..f94eda6 100644 --- a/clutter/cogl/cogl/cogl-material.h +++ b/clutter/cogl/cogl/cogl-material.h @@ -1109,6 +1109,7 @@ typedef enum * By default depth testing is disabled. * * Since: 1.4 + * Stability: Unstable */ void cogl_material_set_depth_test_enabled (CoglMaterial *material, @@ -1123,6 +1124,7 @@ cogl_material_set_depth_test_enabled (CoglMaterial *material, * * Returns: The material's current depth test enabled state. * Since: 1.4 + * Stability: Unstable */ gboolean cogl_material_get_depth_test_enabled (CoglMaterial *material); @@ -1141,6 +1143,7 @@ cogl_material_get_depth_test_enabled (CoglMaterial *material); * By default depth writing is enabled * * Since: 1.4 + * Stability: Unstable */ void cogl_material_set_depth_writing_enabled (CoglMaterial *material, @@ -1155,6 +1158,7 @@ cogl_material_set_depth_writing_enabled (CoglMaterial *material, * * Returns: The current depth writing enable state * Since: 1.4 + * Stability: Unstable */ gboolean cogl_material_get_depth_writing_enabled (CoglMaterial *material); @@ -1169,6 +1173,7 @@ cogl_material_get_depth_writing_enabled (CoglMaterial *material); * depth buffer. * * Since: 1.4 + * Stability: Unstable */ void cogl_material_set_depth_test_function (CoglMaterial *material, @@ -1183,6 +1188,7 @@ cogl_material_set_depth_test_function (CoglMaterial *material, * * Returns: The current depth test enable state. * Since: 1.4 + * Stability: Unstable */ CoglDepthTestFunction cogl_material_get_depth_test_function (CoglMaterial *material); @@ -1221,6 +1227,7 @@ cogl_material_get_depth_test_function (CoglMaterial *material); * Returns: %TRUE if driver support is available else %FALSE. * * Since: 1.4 + * Stability: Unstable */ gboolean cogl_material_set_depth_range (CoglMaterial *material, @@ -1239,6 +1246,7 @@ cogl_material_set_depth_range (CoglMaterial *material, * set with cogl_material_set_depth_range(). * * Since: 1.4 + * Stability: Unstable */ void cogl_material_get_depth_range (CoglMaterial *material, -- 2.7.4