cogl-buffer-private.h: cleanup up the coding style

This file was following the Clutter coding style of arranging prototypes
into columns which Cogl doesn't copy.
This commit is contained in:
Robert Bragg 2010-07-04 00:18:10 +01:00
parent 521d9ca203
commit a46cc22c1b

View File

@ -22,6 +22,7 @@
* *
* Authors: * Authors:
* Damien Lespiau <damien.lespiau@intel.com> * Damien Lespiau <damien.lespiau@intel.com>
* Robert Bragg <robert@linux.intel.com>
*/ */
#ifndef __COGL_BUFFER_PRIVATE_H__ #ifndef __COGL_BUFFER_PRIVATE_H__
@ -50,15 +51,15 @@ typedef struct _CoglBufferVtable CoglBufferVtable;
struct _CoglBufferVtable struct _CoglBufferVtable
{ {
guint8 * (* map) (CoglBuffer *buffer, guint8 * (* map) (CoglBuffer *buffer,
CoglBufferAccess access); CoglBufferAccess access);
void (* unmap) (CoglBuffer *buffer); void (* unmap) (CoglBuffer *buffer);
gboolean (* set_data) (CoglBuffer *buffer, gboolean (* set_data) (CoglBuffer *buffer,
unsigned int offset, unsigned int offset,
const guint8 *data, const guint8 *data,
unsigned int size); unsigned int size);
}; };
typedef enum _CoglBufferFlags typedef enum _CoglBufferFlags
@ -102,21 +103,28 @@ _cogl_buffer_register_buffer_type (GQuark type);
_cogl_buffer_register_buffer_type (_cogl_object_ \ _cogl_buffer_register_buffer_type (_cogl_object_ \
## type_name ## _get_type ())) ## type_name ## _get_type ()))
void
_cogl_buffer_initialize (CoglBuffer *buffer,
unsigned int size,
CoglBufferUsageHint usage_hint,
CoglBufferUpdateHint update_hint);
void _cogl_buffer_initialize (CoglBuffer *buffer, void
unsigned int size, _cogl_buffer_fini (CoglBuffer *buffer);
CoglBufferUsageHint usage_hint,
CoglBufferUpdateHint update_hint); void
void _cogl_buffer_fini (CoglBuffer *buffer); _cogl_buffer_bind (CoglBuffer *buffer,
GLenum target);
CoglBufferUsageHint CoglBufferUsageHint
_cogl_buffer_get_usage_hint (CoglBuffer *buffer); _cogl_buffer_get_usage_hint (CoglBuffer *buffer);
void _cogl_buffer_bind (CoglBuffer *buffer, GLenum
GLenum target); _cogl_buffer_access_to_gl_enum (CoglBufferAccess access);
GLenum _cogl_buffer_access_to_gl_enum (CoglBufferAccess access);
GLenum _cogl_buffer_hints_to_gl_enum (CoglBufferUsageHint usage_hint, GLenum
CoglBufferUpdateHint update_hint); _cogl_buffer_hints_to_gl_enum (CoglBufferUsageHint usage_hint,
CoglBufferUpdateHint update_hint);
G_END_DECLS G_END_DECLS