diff --git a/cogl/cogl-bitmap.h b/cogl/cogl-bitmap.h
index 8d1c42d8d..1983802b2 100644
--- a/cogl/cogl-bitmap.h
+++ b/cogl/cogl-bitmap.h
@@ -107,8 +107,8 @@ cogl_is_bitmap (CoglHandle handle);
* CoglBitmapError:
* @COGL_BITMAP_ERROR_FAILED: Generic failure code, something went
* wrong.
- * @COGL_ERROR_UNKNOWN_TYPE: Unknown image type.
- * @COGL_ERROR_CORRUPT_IMAGE: An image file was broken somehow.
+ * @COGL_BITMAP_ERROR_UNKNOWN_TYPE: Unknown image type.
+ * @COGL_BITMAP_ERROR_CORRUPT_IMAGE: An image file was broken somehow.
*
* Error codes that can be thrown when performing bitmap
* operations. Note that gdk_pixbuf_new_from_file() can also throw
diff --git a/cogl/cogl-buffer.h b/cogl/cogl-buffer.h
index 50c5d10bf..9d0312b9d 100644
--- a/cogl/cogl-buffer.h
+++ b/cogl/cogl-buffer.h
@@ -160,8 +160,8 @@ typedef enum { /*< prefix=COGL_BUFFER_ACCESS >*/
/**
* CoglBufferMapHint:
- * COGL_BUFFER_MAP_HINT_DISCARD: Tells Cogl that you plan to replace
- * all the buffer's contents.
+ * @COGL_BUFFER_MAP_HINT_DISCARD: Tells Cogl that you plan to replace
+ * all the buffer's contents.
*
* Hints to Cogl about how you are planning to modify the data once it
* is mapped.
@@ -170,7 +170,7 @@ typedef enum { /*< prefix=COGL_BUFFER_ACCESS >*/
* Stability: Unstable
*/
typedef enum { /*< prefix=COGL_BUFFER_MAP_HINT >*/
- COGL_BUFFER_MAP_HINT_DISCARD = 1 << 0
+ COGL_BUFFER_MAP_HINT_DISCARD = 1 << 0
} CoglBufferMapHint;
/**
@@ -178,7 +178,7 @@ typedef enum { /*< prefix=COGL_BUFFER_MAP_HINT >*/
* @buffer: a buffer object
* @access: how the mapped buffer will be used by the application
* @hints: A mask of #CoglBufferMapHints that tell Cogl how
- * the data will be modified once mapped.
+ * the data will be modified once mapped.
*
* Maps the buffer into the application address space for direct access.
*
diff --git a/cogl/cogl-index-array.h b/cogl/cogl-index-array.h
index e85fd2cae..498449feb 100644
--- a/cogl/cogl-index-array.h
+++ b/cogl/cogl-index-array.h
@@ -45,7 +45,7 @@ typedef struct _CoglIndexArray CoglIndexArray;
/**
* cogl_index_array_new:
- * @size: The number of bytes to allocate for vertex attribute data.
+ * @bytes: The number of bytes to allocate for vertex attribute data.
*
* Declares a new #CoglIndexArray of @size bytes to contain vertex
* indices. Once declared, data can be set using
diff --git a/cogl/cogl-material-compat.h b/cogl/cogl-material-compat.h
index b6e25ff84..34c6d290f 100644
--- a/cogl/cogl-material-compat.h
+++ b/cogl/cogl-material-compat.h
@@ -171,7 +171,7 @@ cogl_material_copy (CoglMaterial *source);
* Deprecated: 1.2: Use cogl_object_ref() instead
*/
CoglHandle
-cogl_material_ref (CoglHandle handle) G_GNUC_DEPRECATED;
+cogl_material_ref (CoglHandle material) G_GNUC_DEPRECATED;
/**
* cogl_material_unref:
@@ -184,7 +184,7 @@ cogl_material_ref (CoglHandle handle) G_GNUC_DEPRECATED;
* Deprecated: 1.2: Use cogl_object_unref() instead
*/
void
-cogl_material_unref (CoglHandle handle) G_GNUC_DEPRECATED;
+cogl_material_unref (CoglHandle material) G_GNUC_DEPRECATED;
#endif /* COGL_DISABLE_DEPRECATED */
@@ -607,8 +607,8 @@ cogl_material_set_blend_constant (CoglMaterial *material,
/**
* cogl_material_set_point_size:
- * @material: a #CoglHandle to a material.
- * @size: the new point size.
+ * @material: a material.
+ * @point_size: the new point size.
*
* Changes the size of points drawn when %COGL_VERTICES_MODE_POINTS is
* used with the vertex buffer API. Note that typically the GPU will
@@ -645,7 +645,8 @@ cogl_material_get_point_size (CoglMaterial *material);
* Queries what user program has been associated with the given
* @material using cogl_material_set_user_program().
*
- * Return value: The current user program or %COGL_INVALID_HANDLE.
+ * Return value: (transfer none): The current user program
+ * or %COGL_INVALID_HANDLE.
*
* Since: 1.4
*/
diff --git a/cogl/cogl-object.h b/cogl/cogl-object.h
index adb525e8a..71dd8bd7c 100644
--- a/cogl/cogl-object.h
+++ b/cogl/cogl-object.h
@@ -82,15 +82,15 @@ typedef struct
typedef void (*CoglUserDataDestroyCallback) (void *user_data);
/**
- * cogl_object_set_user_data:
+ * cogl_object_set_user_data: (skip)
* @object: The object to associate private data with
* @key: The address of a #CoglUserDataKey which provides a unique value
- * with which to index the private data.
- * @user_data: The data to associate with the given object, or NULL to
- * remove a previous association.
+ * with which to index the private data.
+ * @user_data: The data to associate with the given object,
+ * or %NULL to remove a previous association.
* @destroy: A #CoglUserDataDestroyCallback to call if the object is
- * destroyed or if the association is removed by later setting
- * NULL data for the same key.
+ * destroyed or if the association is removed by later setting
+ * %NULL data for the same key.
*
* Associates some private @user_data with a given #CoglObject. To
* later remove the association call cogl_object_set_user_data() with
@@ -105,7 +105,7 @@ cogl_object_set_user_data (CoglObject *object,
CoglUserDataDestroyCallback destroy);
/**
- * cogl_object_get_user_data:
+ * cogl_object_get_user_data: (skip)
* @object: The object with associated private data to query
* @key: The address of a #CoglUserDataKey which provides a unique value
* with which to index the private data.
@@ -114,8 +114,9 @@ cogl_object_set_user_data (CoglObject *object,
* the given @key. If no user data has been associated with @object
* for the given @key this function returns NULL.
*
- * Returns: The user data previously associated with @object using
- * the given @key; or NULL if no associated data is found.
+ * Returns: (transfer none): The user data previously associated
+ * with @object using the given @key; or %NULL if no associated
+ * data is found.
*
* Since: 1.4
*/
diff --git a/cogl/cogl-path.h b/cogl/cogl-path.h
index 7fc971021..30df7ef01 100644
--- a/cogl/cogl-path.h
+++ b/cogl/cogl-path.h
@@ -440,7 +440,7 @@ cogl_path_round_rectangle (float x_1,
float arc_step);
/**
- * cogl_get_path:
+ * cogl_get_path: (skip)
*
* Gets a pointer to the current path. The path can later be used
* again by calling cogl_path_set(). Note that the path isn't copied
@@ -457,7 +457,7 @@ CoglPath *
cogl_get_path (void);
/**
- * cogl_set_path:
+ * cogl_set_path: (skip)
* @path: A #CoglPath object
*
* Replaces the current path with @path. A reference is taken on the
@@ -470,7 +470,7 @@ void
cogl_set_path (CoglPath *path);
/**
- * cogl_path_copy:
+ * cogl_path_copy: (skip)
* @path: A #CoglPath object
*
* Returns a new copy of the path in @path. The new path has a
@@ -480,7 +480,7 @@ cogl_set_path (CoglPath *path);
* Internally the path will share the data until one of the paths is
* modified so copying paths should be relatively cheap.
*
- * Return value: a copy of the path in @path.
+ * Return value: (transfer full): a copy of the path in @path.
*/
CoglPath *
cogl_path_copy (CoglPath *path);
diff --git a/cogl/cogl-pipeline.h b/cogl/cogl-pipeline.h
index dea3ac005..52c323db6 100644
--- a/cogl/cogl-pipeline.h
+++ b/cogl/cogl-pipeline.h
@@ -603,7 +603,7 @@ cogl_pipeline_set_blend_constant (CoglPipeline *pipeline,
/**
* cogl_pipeline_set_point_size:
* @pipeline: a #CoglHandle to a pipeline.
- * @size: the new point size.
+ * @point_size: the new point size.
*
* Changes the size of points drawn when %COGL_VERTICES_MODE_POINTS is
* used with the vertex buffer API. Note that typically the GPU will
diff --git a/cogl/cogl-types.h b/cogl/cogl-types.h
index e2b100714..1f493110b 100644
--- a/cogl/cogl-types.h
+++ b/cogl/cogl-types.h
@@ -84,7 +84,7 @@ void
cogl_handle_unref (CoglHandle handle);
/**
- * cogl_object_ref:
+ * cogl_object_ref: (skip)
* @object: a #CoglObject
*
* Increases the reference count of @handle by 1
@@ -95,7 +95,7 @@ void *
cogl_object_ref (void *object);
/**
- * cogl_object_unref:
+ * cogl_object_unref: (skip)
* @object: a #CoglObject
*
* Drecreases the reference count of @object by 1; if the reference
diff --git a/cogl/cogl-vertex-array.h b/cogl/cogl-vertex-array.h
index afcd6dad1..2d8ddbb80 100644
--- a/cogl/cogl-vertex-array.h
+++ b/cogl/cogl-vertex-array.h
@@ -44,7 +44,7 @@ typedef struct _CoglVertexArray CoglVertexArray;
/**
* cogl_vertex_array_new:
- * @size: The number of bytes to allocate for vertex attribute data.
+ * @bytes: The number of bytes to allocate for vertex attribute data.
* @data: An optional pointer to vertex data to upload immediately.
*
* Declares a new #CoglVertexArray of @size bytes to contain arrays of vertex
diff --git a/cogl/cogl-vertex-buffer.h b/cogl/cogl-vertex-buffer.h
index a2093bb9a..4f9217c5e 100644
--- a/cogl/cogl-vertex-buffer.h
+++ b/cogl/cogl-vertex-buffer.h
@@ -296,7 +296,7 @@ cogl_vertex_buffer_indices_new (CoglIndicesType indices_type,
/**
* cogl_vertex_buffer_indices_get_type:
- * @handle: An indices handle
+ * @indices: An indices handle
*
* Queries back the data type used for the given indices
*
diff --git a/doc/reference/cogl/cogl-sections.txt b/doc/reference/cogl/cogl-sections.txt
index 1a347e797..359bfac70 100644
--- a/doc/reference/cogl/cogl-sections.txt
+++ b/doc/reference/cogl/cogl-sections.txt
@@ -186,11 +186,15 @@ cogl_path_stroke_preserve
cogl-bitmap
Bitmaps
+CoglBitmap
cogl_bitmap_new_from_file
cogl_bitmap_get_size_from_file
cogl_is_bitmap
CoglBitmapError
COGL_BITMAP_ERROR
+
+cogl_bitmap_error_get_type
+cogl_bitmap_error_quark
@@ -334,6 +338,9 @@ cogl_fixed_pow2
cogl_fixed_sin
cogl_fixed_sqrt
cogl_fixed_tan
+cogl_fixed_div
+cogl_fixed_mul
+cogl_fixed_mul_div
CoglAngle
@@ -348,7 +355,7 @@ cogl_angle_tan
cogl_double_to_fixed
cogl_double_to_int
-cogl_double_to_unit
+cogl_double_to_uint
@@ -358,6 +365,9 @@ CoglColor
cogl_color_new
cogl_color_copy
cogl_color_free
+cogl_color_init_from_4f
+cogl_color_init_from_4fv
+cogl_color_init_from_4ub
cogl_color_set_from_4ub
cogl_color_set_from_4f
@@ -433,6 +443,9 @@ cogl_vertex_buffer_indices_get_type
Matrices
CoglMatrix
cogl_matrix_init_identity
+cogl_matrix_copy
+cogl_matrix_equal
+cogl_matrix_free
cogl_matrix_frustum
cogl_matrix_ortho
cogl_matrix_perspective
@@ -444,11 +457,16 @@ cogl_matrix_init_from_array
cogl_matrix_get_array
cogl_matrix_get_inverse
cogl_matrix_transform_point
+cogl_matrix_project_points
+cogl_matrix_transform_points
cogl-material
Materials
+CoglMaterial
+CoglMaterialLayer
+CoglMaterialLayerCallback
cogl_material_new
cogl_material_copy
cogl_is_material
@@ -495,9 +513,22 @@ cogl_material_set_layer_wrap_mode
cogl_material_set_layer_wrap_mode_s
cogl_material_set_layer_wrap_mode_t
cogl_material_set_layer_wrap_mode_p
-cogl_material_layer_get_wrap_mode_s
-cogl_material_layer_get_wrap_mode_t
-cogl_material_layer_get_wrap_mode_p
+cogl_material_get_layer_wrap_mode_s
+cogl_material_get_layer_wrap_mode_t
+cogl_material_get_layer_wrap_mode_p
+cogl_material_wrap_mode_get_type
+cogl_material_set_user_program
+cogl_material_get_user_program
+cogl_material_set_depth_range
+cogl_material_get_depth_range
+cogl_material_set_depth_test_enabled
+cogl_material_get_depth_test_enabled
+cogl_material_set_depth_test_function
+cogl_material_get_depth_test_function
+cogl_material_set_depth_writing_enabled
+cogl_material_get_depth_writing_enabled
+cogl_material_foreach_layer
+
cogl_blend_string_error_get_type
cogl_blend_string_error_quark