cogl: Remove CoglTextureType

https://gitlab.gnome.org/GNOME/mutter/merge_requests/546
This commit is contained in:
Adam Jackson 2019-03-08 14:54:10 -05:00
parent 1783ea5af1
commit ca2be8ef5b
2 changed files with 0 additions and 16 deletions

View File

@ -159,7 +159,6 @@ cogl_pipeline_set_layer_texture (CoglPipeline *pipeline,
* cogl_pipeline_set_layer_null_texture:
* @pipeline: A #CoglPipeline
* @layer_index: The layer number to modify
* @texture_type: The type of the default texture to use
*
* Sets the texture for this layer to be the default texture for the
* given type. The default texture is a 1x1 pixel white texture.

View File

@ -107,21 +107,6 @@ typedef enum
COGL_TEXTURE_ERROR_TYPE
} CoglTextureError;
/**
* CoglTextureType:
* @COGL_TEXTURE_TYPE_2D: A #CoglTexture2D
*
* Constants representing the underlying hardware texture type of a
* #CoglTexture.
*
* Stability: unstable
* Since: 1.10
*/
typedef enum
{
COGL_TEXTURE_TYPE_2D,
} CoglTextureType;
uint32_t cogl_texture_error_quark (void);
/**