summaryrefslogtreecommitdiff
path: root/clutter/clutter-paint-nodes.h
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@linux.intel.com>2012-03-16 17:30:26 +0000
committerEmmanuele Bassi <ebassi@linux.intel.com>2012-03-16 17:30:26 +0000
commite5e10b6a04486f6936265727b099390fd99f2f5a (patch)
treea9f1fc3f4c6e42474f1eba9ef7d695cd47a12439 /clutter/clutter-paint-nodes.h
parent1df14c1bac2c903466d975946a4c29a892ed28c1 (diff)
downloadclutter-e5e10b6a04486f6936265727b099390fd99f2f5a.tar.gz
Annotate functionality added in 1.10
Diffstat (limited to 'clutter/clutter-paint-nodes.h')
-rw-r--r--clutter/clutter-paint-nodes.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/clutter/clutter-paint-nodes.h b/clutter/clutter-paint-nodes.h
index be40f565b..75a1ee3eb 100644
--- a/clutter/clutter-paint-nodes.h
+++ b/clutter/clutter-paint-nodes.h
@@ -49,8 +49,10 @@ G_BEGIN_DECLS
typedef struct _ClutterColorNode ClutterColorNode;
typedef struct _ClutterColorNodeClass ClutterColorNodeClass;
+CLUTTER_AVAILABLE_IN_1_10
GType clutter_color_node_get_type (void) G_GNUC_CONST;
+CLUTTER_AVAILABLE_IN_1_10
ClutterPaintNode * clutter_color_node_new (const ClutterColor *color);
#define CLUTTER_TYPE_TEXTURE_NODE (clutter_texture_node_get_type ())
@@ -68,8 +70,10 @@ ClutterPaintNode * clutter_color_node_new (const ClutterColor *
typedef struct _ClutterTextureNode ClutterTextureNode;
typedef struct _ClutterTextureNodeClass ClutterTextureNodeClass;
+CLUTTER_AVAILABLE_IN_1_10
GType clutter_texture_node_get_type (void) G_GNUC_CONST;
+CLUTTER_AVAILABLE_IN_1_10
ClutterPaintNode * clutter_texture_node_new (CoglTexture *texture,
const ClutterColor *color,
ClutterScalingFilter min_filter,
@@ -90,8 +94,10 @@ ClutterPaintNode * clutter_texture_node_new (CoglTexture *
typedef struct _ClutterClipNode ClutterClipNode;
typedef struct _ClutterClipNodeClass ClutterClipNodeClass;
+CLUTTER_AVAILABLE_IN_1_10
GType clutter_clip_node_get_type (void) G_GNUC_CONST;
+CLUTTER_AVAILABLE_IN_1_10
ClutterPaintNode * clutter_clip_node_new (void);
#define CLUTTER_TYPE_PIPELINE_NODE (clutter_pipeline_node_get_type ())
@@ -109,9 +115,11 @@ ClutterPaintNode * clutter_clip_node_new (void);
typedef struct _ClutterPipelineNode ClutterPipelineNode;
typedef struct _ClutterPipelineNodeClass ClutterPipelineNodeClass;
+CLUTTER_AVAILABLE_IN_1_10
GType clutter_pipeline_node_get_type (void) G_GNUC_CONST;
#if defined(COGL_ENABLE_EXPERIMENTAL_2_0_API) && defined(CLUTTER_ENABLE_EXPERIMENTAL_API)
+CLUTTER_AVAILABLE_IN_1_10
ClutterPaintNode * clutter_pipeline_node_new (CoglPipeline *pipeline);
#endif /* COGL_ENABLE_EXPERIMENTAL_2_0_API && CLUTTER_ENABLE_EXPERIMENTAL_API */
@@ -130,8 +138,10 @@ ClutterPaintNode * clutter_pipeline_node_new (CoglPipeline *
typedef struct _ClutterTextNode ClutterTextNode;
typedef struct _ClutterTextNodeClass ClutterTextNodeClass;
+CLUTTER_AVAILABLE_IN_1_10
GType clutter_text_node_get_type (void) G_GNUC_CONST;
+CLUTTER_AVAILABLE_IN_1_10
ClutterPaintNode * clutter_text_node_new (PangoLayout *layout,
const ClutterColor *color);