replace color table FloatTable boolean with Type enum
[mesa.git] / src / mesa / main / bufferobj.h
1
2 /*
3 * Mesa 3-D graphics library
4 * Version: 5.1
5 *
6 * Copyright (C) 1999-2003 Brian Paul All Rights Reserved.
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included
16 * in all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
22 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
23 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 */
25
26
27
28 #ifndef BUFFEROBJ_H
29 #define BUFFEROBJ_H
30
31
32 #include "context.h"
33
34
35 /*
36 * Internal functions
37 */
38
39 extern void
40 _mesa_init_buffer_objects( GLcontext *ctx );
41
42 extern struct gl_buffer_object *
43 _mesa_new_buffer_object( GLcontext *ctx, GLuint name, GLenum target );
44
45 extern void
46 _mesa_delete_buffer_object( GLcontext *ctx, struct gl_buffer_object *bufObj );
47
48 extern void
49 _mesa_initialize_buffer_object( struct gl_buffer_object *obj,
50 GLuint name, GLenum target );
51
52 extern void
53 _mesa_save_buffer_object( GLcontext *ctx, struct gl_buffer_object *obj );
54
55 extern void
56 _mesa_remove_buffer_object( GLcontext *ctx, struct gl_buffer_object *bufObj );
57
58 extern void
59 _mesa_buffer_data( GLcontext *ctx, GLenum target, GLsizeiptrARB size,
60 const GLvoid * data, GLenum usage,
61 struct gl_buffer_object * bufObj );
62
63 extern void
64 _mesa_buffer_subdata( GLcontext *ctx, GLenum target, GLintptrARB offset,
65 GLsizeiptrARB size, const GLvoid * data,
66 struct gl_buffer_object * bufObj );
67
68 extern void
69 _mesa_buffer_get_subdata( GLcontext *ctx, GLenum target, GLintptrARB offset,
70 GLsizeiptrARB size, GLvoid * data,
71 struct gl_buffer_object * bufObj );
72
73 extern void *
74 _mesa_buffer_map( GLcontext *ctx, GLenum target, GLenum access,
75 struct gl_buffer_object * bufObj );
76
77
78
79 /*
80 * API functions
81 */
82
83 extern void GLAPIENTRY
84 _mesa_BindBufferARB(GLenum target, GLuint buffer);
85
86 extern void GLAPIENTRY
87 _mesa_DeleteBuffersARB(GLsizei n, const GLuint * buffer);
88
89 extern void GLAPIENTRY
90 _mesa_GenBuffersARB(GLsizei n, GLuint * buffer);
91
92 extern GLboolean GLAPIENTRY
93 _mesa_IsBufferARB(GLuint buffer);
94
95 extern void GLAPIENTRY
96 _mesa_BufferDataARB(GLenum target, GLsizeiptrARB size, const GLvoid * data, GLenum usage);
97
98 extern void GLAPIENTRY
99 _mesa_BufferSubDataARB(GLenum target, GLintptrARB offset, GLsizeiptrARB size, const GLvoid * data);
100
101 extern void GLAPIENTRY
102 _mesa_GetBufferSubDataARB(GLenum target, GLintptrARB offset, GLsizeiptrARB size, void * data);
103
104 extern void * GLAPIENTRY
105 _mesa_MapBufferARB(GLenum target, GLenum access);
106
107 extern GLboolean GLAPIENTRY
108 _mesa_UnmapBufferARB(GLenum target);
109
110 extern void GLAPIENTRY
111 _mesa_GetBufferParameterivARB(GLenum target, GLenum pname, GLint *params);
112
113 extern void GLAPIENTRY
114 _mesa_GetBufferPointervARB(GLenum target, GLenum pname, GLvoid **params);
115
116 #endif