pipeline: add missing transfer annotations

Reviewed-by: Robert Bragg <robert@linux.intel.com>
This commit is contained in:
Lionel Landwerlin 2013-09-03 14:23:32 +01:00 committed by Robert Bragg
parent b53de33521
commit 44f17fbd8d
3 changed files with 5 additions and 5 deletions

View File

@ -179,8 +179,8 @@ cogl_pipeline_set_layer_null_texture (CoglPipeline *pipeline,
* @pipeline: A #CoglPipeline object
* @layer_index: the index of the layer
*
* Return value: the texture that was set for the given layer of the
* pipeline or %NULL if no texture was set.
* Return value: (transfer none): the texture that was set for the
* given layer of the pipeline or %NULL if no texture was set.
* Stability: unstable
* Since: 1.10
*/

View File

@ -604,7 +604,7 @@ cogl_pipeline_set_color_mask (CoglPipeline *pipeline,
* Queries what user program has been associated with the given
* @pipeline using cogl_pipeline_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: 2.0
* Stability: Unstable

View File

@ -64,7 +64,7 @@ COGL_BEGIN_DECLS
* Allocates and initializes a default simple pipeline that will color
* a primitive white.
*
* Return value: a pointer to a new #CoglPipeline
* Return value: (transfer full): a pointer to a new #CoglPipeline
*
* Since: 2.0
* Stability: Unstable
@ -85,7 +85,7 @@ cogl_pipeline_new (CoglContext *context);
* keep track of a pipelines ancestry which we may use to help minimize GPU
* state changes.
*
* Returns: a pointer to the newly allocated #CoglPipeline
* Return value: (transfer full): a pointer to the newly allocated #CoglPipeline
*
* Since: 2.0
* Stability: Unstable