texture-3d: add missing transfer annotations

Reviewed-by: Robert Bragg <robert@linux.intel.com>
This commit is contained in:
Lionel Landwerlin 2013-09-03 13:13:58 +01:00 committed by Robert Bragg
parent c1f6ec77b5
commit dfa0bdc9ed

View File

@ -71,7 +71,7 @@ typedef struct _CoglTexture3D CoglTexture3D;
* fail if the requested dimensions are not supported by the * fail if the requested dimensions are not supported by the
* GPU.</note> * GPU.</note>
* *
* Returns: A new #CoglTexture3D object with no storage yet allocated. * Returns: (transfer full): A new #CoglTexture3D object with no storage yet allocated.
* Since: 1.10 * Since: 1.10
* Stability: Unstable * Stability: Unstable
*/ */
@ -115,9 +115,9 @@ cogl_texture_3d_new_with_size (CoglContext *context,
* %COGL_FEATURE_ID_TEXTURE_3D is not advertised. It can also fail if the * %COGL_FEATURE_ID_TEXTURE_3D is not advertised. It can also fail if the
* requested dimensions are not supported by the GPU. * requested dimensions are not supported by the GPU.
* *
* Return value: the newly created #CoglTexture3D or %NULL if * Return value: (transfer full): the newly created #CoglTexture3D or
* there was an error an an exception will be returned * %NULL if there was an error an an exception will be
* through @error. * returned through @error.
* Since: 1.10 * Since: 1.10
* Stability: Unstable * Stability: Unstable
*/ */
@ -155,8 +155,8 @@ cogl_texture_3d_new_from_data (CoglContext *context,
* actual height of the bitmap can be larger than @height × @depth. In * actual height of the bitmap can be larger than @height × @depth. In
* this case it assumes there is padding between the images. * this case it assumes there is padding between the images.
* *
* Return value: the newly created texture or %NULL if * Return value: (transfer full): the newly created texture or %NULL
* there was an error. * if there was an error.
* Since: 2.0 * Since: 2.0
* Stability: unstable * Stability: unstable
*/ */