All pastes #1875507 Raw Edit

bob

public text v1 · immutable
#1875507 ·published 2010-06-01 18:11 UTC
rendered paste body
From 6f444ce8ba7d06e93593abeb7c37148e4bb11586 Mon Sep 17 00:00:00 2001From: Robert Bragg <robert@linux.intel.com>Date: Tue, 1 Jun 2010 17:53:42 +0100Subject: [PATCH] cogl-path: Adds missing cogl_is_path prototypeThis adds a missing cogl_is_path prototype to the public cogl-path.hheader.--- clutter/cogl/cogl/cogl-path.h        |   12 ++++++++++++ doc/reference/cogl/cogl-sections.txt |    1 + 2 files changed, 13 insertions(+), 0 deletions(-)diff --git a/clutter/cogl/cogl/cogl-path.h b/clutter/cogl/cogl/cogl-path.hindex aa8bfd2..7cd8398 100644--- a/clutter/cogl/cogl/cogl-path.h+++ b/clutter/cogl/cogl/cogl-path.h@@ -54,6 +54,18 @@ G_BEGIN_DECLS typedef struct _CoglPath CoglPath;  /**+ * cogl_is_path:+ * @handle: A CoglHandle+ *+ * Gets whether the given handle references an existing path object.+ *+ * Return value: %TRUE if the handle references a #CoglMaterial,+ *   %FALSE otherwise+ */+gboolean+cogl_is_path (CoglHandle handle);++/**  * cogl_path_fill:  *  * Fills the interior of the constructed shape using the currentdiff --git a/doc/reference/cogl/cogl-sections.txt b/doc/reference/cogl/cogl-sections.txtindex 755a582..362ac66 100644--- a/doc/reference/cogl/cogl-sections.txt+++ b/doc/reference/cogl/cogl-sections.txt@@ -154,6 +154,7 @@ cogl_rectangle_with_multitexture_coords cogl_polygon  <SUBSECTION>+cogl_is_path cogl_path_new cogl_get_path cogl_set_path-- 1.6.3.3