mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 11:30:21 +01:00
mesa: Cleanup mesa/main/bufferobj.h
Column wrapping and space between lines. Reviewed-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
parent
3b0f5fc084
commit
4bf3afdde9
1 changed files with 45 additions and 14 deletions
|
|
@ -57,10 +57,10 @@ _mesa_is_bufferobj(const struct gl_buffer_object *obj)
|
|||
|
||||
|
||||
extern void
|
||||
_mesa_init_buffer_objects( struct gl_context *ctx );
|
||||
_mesa_init_buffer_objects(struct gl_context *ctx);
|
||||
|
||||
extern void
|
||||
_mesa_free_buffer_objects( struct gl_context *ctx );
|
||||
_mesa_free_buffer_objects(struct gl_context *ctx);
|
||||
|
||||
extern bool
|
||||
_mesa_handle_bind_buffer_gen(struct gl_context *ctx,
|
||||
|
|
@ -77,9 +77,9 @@ extern struct gl_buffer_object *
|
|||
_mesa_lookup_bufferobj(struct gl_context *ctx, GLuint buffer);
|
||||
|
||||
extern void
|
||||
_mesa_initialize_buffer_object( struct gl_context *ctx,
|
||||
struct gl_buffer_object *obj,
|
||||
GLuint name, GLenum target );
|
||||
_mesa_initialize_buffer_object(struct gl_context *ctx,
|
||||
struct gl_buffer_object *obj,
|
||||
GLuint name, GLenum target);
|
||||
|
||||
extern void
|
||||
_mesa_reference_buffer_object_(struct gl_context *ctx,
|
||||
|
|
@ -105,59 +105,90 @@ _mesa_init_buffer_object_functions(struct dd_function_table *driver);
|
|||
/*
|
||||
* API functions
|
||||
*/
|
||||
|
||||
void GLAPIENTRY
|
||||
_mesa_BindBuffer(GLenum target, GLuint buffer);
|
||||
|
||||
void GLAPIENTRY
|
||||
_mesa_DeleteBuffers(GLsizei n, const GLuint * buffer);
|
||||
|
||||
void GLAPIENTRY
|
||||
_mesa_GenBuffers(GLsizei n, GLuint * buffer);
|
||||
|
||||
GLboolean GLAPIENTRY
|
||||
_mesa_IsBuffer(GLuint buffer);
|
||||
|
||||
void GLAPIENTRY
|
||||
_mesa_BufferData(GLenum target, GLsizeiptrARB size, const GLvoid * data, GLenum usage);
|
||||
_mesa_BufferData(GLenum target, GLsizeiptrARB size,
|
||||
const GLvoid * data, GLenum usage);
|
||||
|
||||
void GLAPIENTRY
|
||||
_mesa_BufferSubData(GLenum target, GLintptrARB offset, GLsizeiptrARB size, const GLvoid * data);
|
||||
_mesa_BufferSubData(GLenum target, GLintptrARB offset,
|
||||
GLsizeiptrARB size, const GLvoid * data);
|
||||
|
||||
void GLAPIENTRY
|
||||
_mesa_GetBufferSubData(GLenum target, GLintptrARB offset, GLsizeiptrARB size, void * data);
|
||||
_mesa_GetBufferSubData(GLenum target, GLintptrARB offset,
|
||||
GLsizeiptrARB size, void * data);
|
||||
|
||||
void GLAPIENTRY
|
||||
_mesa_ClearBufferData(GLenum target, GLenum internalformat, GLenum format, GLenum type, const GLvoid * data);
|
||||
_mesa_ClearBufferData(GLenum target, GLenum internalformat,
|
||||
GLenum format, GLenum type,
|
||||
const GLvoid * data);
|
||||
|
||||
void GLAPIENTRY
|
||||
_mesa_ClearBufferSubData(GLenum target, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const GLvoid * data);
|
||||
_mesa_ClearBufferSubData(GLenum target, GLenum internalformat,
|
||||
GLintptr offset, GLsizeiptr size,
|
||||
GLenum format, GLenum type,
|
||||
const GLvoid * data);
|
||||
|
||||
void * GLAPIENTRY
|
||||
_mesa_MapBuffer(GLenum target, GLenum access);
|
||||
|
||||
GLboolean GLAPIENTRY
|
||||
_mesa_UnmapBuffer(GLenum target);
|
||||
|
||||
void GLAPIENTRY
|
||||
_mesa_GetBufferParameteriv(GLenum target, GLenum pname, GLint *params);
|
||||
|
||||
void GLAPIENTRY
|
||||
_mesa_GetBufferParameteri64v(GLenum target, GLenum pname, GLint64 *params);
|
||||
|
||||
void GLAPIENTRY
|
||||
_mesa_GetBufferPointerv(GLenum target, GLenum pname, GLvoid **params);
|
||||
|
||||
void GLAPIENTRY
|
||||
_mesa_CopyBufferSubData(GLenum readTarget, GLenum writeTarget,
|
||||
GLintptr readOffset, GLintptr writeOffset,
|
||||
GLsizeiptr size);
|
||||
|
||||
void * GLAPIENTRY
|
||||
_mesa_MapBufferRange(GLenum target, GLintptr offset, GLsizeiptr length,
|
||||
GLbitfield access);
|
||||
|
||||
void GLAPIENTRY
|
||||
_mesa_FlushMappedBufferRange(GLenum target, GLintptr offset, GLsizeiptr length);
|
||||
_mesa_FlushMappedBufferRange(GLenum target,
|
||||
GLintptr offset, GLsizeiptr length);
|
||||
|
||||
GLenum GLAPIENTRY
|
||||
_mesa_ObjectPurgeableAPPLE(GLenum objectType, GLuint name, GLenum option);
|
||||
|
||||
GLenum GLAPIENTRY
|
||||
_mesa_ObjectUnpurgeableAPPLE(GLenum objectType, GLuint name, GLenum option);
|
||||
|
||||
void GLAPIENTRY
|
||||
_mesa_GetObjectParameterivAPPLE(GLenum objectType, GLuint name, GLenum pname,
|
||||
GLint* params);
|
||||
_mesa_GetObjectParameterivAPPLE(GLenum objectType, GLuint name,
|
||||
GLenum pname, GLint* params);
|
||||
|
||||
void GLAPIENTRY
|
||||
_mesa_BindBufferRange(GLenum target, GLuint index,
|
||||
GLuint buffer, GLintptr offset, GLsizeiptr size);
|
||||
|
||||
void GLAPIENTRY
|
||||
_mesa_BindBufferBase(GLenum target, GLuint index, GLuint buffer);
|
||||
|
||||
void GLAPIENTRY
|
||||
_mesa_InvalidateBufferSubData(GLuint buffer, GLintptr offset,
|
||||
GLsizeiptr length);
|
||||
|
||||
void GLAPIENTRY
|
||||
_mesa_InvalidateBufferData(GLuint buffer);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue