mirror of
https://github.com/brl/mutter.git
synced 2025-06-14 01:09:30 +00:00
buffer: BufferBindTarget + BufferUsageHint enum renaming
This renames the BufferBindTarget + BufferUsageHint enums to match the anticipated new APIs for "index arrays" and "vertex arrays" as opposed to using the terms "vertices" or "indices".
This commit is contained in:
@ -63,14 +63,15 @@ typedef enum _CoglBufferFlags
|
||||
|
||||
typedef enum {
|
||||
COGL_BUFFER_USAGE_HINT_TEXTURE,
|
||||
COGL_BUFFER_USAGE_HINT_VERTICES
|
||||
COGL_BUFFER_USAGE_HINT_VERTEX_ARRAY,
|
||||
COGL_BUFFER_USAGE_HINT_INDEX_ARRAY
|
||||
} CoglBufferUsageHint;
|
||||
|
||||
typedef enum {
|
||||
COGL_BUFFER_BIND_TARGET_PIXEL_PACK,
|
||||
COGL_BUFFER_BIND_TARGET_PIXEL_UNPACK,
|
||||
COGL_BUFFER_BIND_TARGET_VERTEX_ARRAY,
|
||||
COGL_BUFFER_BIND_TARGET_VERTEX_INDICES_ARRAY,
|
||||
COGL_BUFFER_BIND_TARGET_INDEX_ARRAY,
|
||||
|
||||
COGL_BUFFER_BIND_TARGET_COUNT
|
||||
} CoglBufferBindTarget;
|
||||
|
Reference in New Issue
Block a user