glapi: Add infrastructure for ARB_multi_bind
[mesa.git] / src / mesa / main / bufferobj.h
1 /*
2 * Mesa 3-D graphics library
3 *
4 * Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
5 * Copyright (C) 2009 VMware, Inc. All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
21 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
22 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23 * OTHER DEALINGS IN THE SOFTWARE.
24 */
25
26
27
28 #ifndef BUFFEROBJ_H
29 #define BUFFEROBJ_H
30
31 #include <stdbool.h>
32 #include "mtypes.h"
33
34
35 /*
36 * Internal functions
37 */
38
39
40 /** Is the given buffer object currently mapped by the GL user? */
41 static inline GLboolean
42 _mesa_bufferobj_mapped(const struct gl_buffer_object *obj,
43 gl_map_buffer_index index)
44 {
45 return obj->Mappings[index].Pointer != NULL;
46 }
47
48 /** Can we not use this buffer while mapped? */
49 static inline GLboolean
50 _mesa_check_disallowed_mapping(const struct gl_buffer_object *obj)
51 {
52 return _mesa_bufferobj_mapped(obj, MAP_USER) &&
53 !(obj->Mappings[MAP_USER].AccessFlags &
54 GL_MAP_PERSISTENT_BIT);
55 }
56
57 /**
58 * Is the given buffer object a user-created buffer object?
59 * Mesa uses default buffer objects in several places. Default buffers
60 * always have Name==0. User created buffers have Name!=0.
61 */
62 static inline GLboolean
63 _mesa_is_bufferobj(const struct gl_buffer_object *obj)
64 {
65 return obj != NULL && obj->Name != 0;
66 }
67
68
69 extern void
70 _mesa_init_buffer_objects(struct gl_context *ctx);
71
72 extern void
73 _mesa_free_buffer_objects(struct gl_context *ctx);
74
75 extern bool
76 _mesa_handle_bind_buffer_gen(struct gl_context *ctx,
77 GLenum target,
78 GLuint buffer,
79 struct gl_buffer_object **buf_handle,
80 const char *caller);
81
82 extern void
83 _mesa_update_default_objects_buffer_objects(struct gl_context *ctx);
84
85
86 extern struct gl_buffer_object *
87 _mesa_lookup_bufferobj(struct gl_context *ctx, GLuint buffer);
88
89 extern void
90 _mesa_initialize_buffer_object(struct gl_context *ctx,
91 struct gl_buffer_object *obj,
92 GLuint name, GLenum target);
93
94 extern void
95 _mesa_reference_buffer_object_(struct gl_context *ctx,
96 struct gl_buffer_object **ptr,
97 struct gl_buffer_object *bufObj);
98
99 static inline void
100 _mesa_reference_buffer_object(struct gl_context *ctx,
101 struct gl_buffer_object **ptr,
102 struct gl_buffer_object *bufObj)
103 {
104 if (*ptr != bufObj)
105 _mesa_reference_buffer_object_(ctx, ptr, bufObj);
106 }
107
108 extern GLuint
109 _mesa_total_buffer_object_memory(struct gl_context *ctx);
110
111 extern void
112 _mesa_init_buffer_object_functions(struct dd_function_table *driver);
113
114 extern void
115 _mesa_buffer_unmap_all_mappings(struct gl_context *ctx,
116 struct gl_buffer_object *bufObj);
117
118 extern void
119 _mesa_buffer_clear_subdata(struct gl_context *ctx,
120 GLintptr offset, GLsizeiptr size,
121 const GLvoid *clearValue,
122 GLsizeiptr clearValueSize,
123 struct gl_buffer_object *bufObj);
124
125 /*
126 * API functions
127 */
128 void GLAPIENTRY
129 _mesa_BindBuffer(GLenum target, GLuint buffer);
130
131 void GLAPIENTRY
132 _mesa_DeleteBuffers(GLsizei n, const GLuint * buffer);
133
134 void GLAPIENTRY
135 _mesa_GenBuffers(GLsizei n, GLuint * buffer);
136
137 GLboolean GLAPIENTRY
138 _mesa_IsBuffer(GLuint buffer);
139
140 void GLAPIENTRY
141 _mesa_BufferStorage(GLenum target, GLsizeiptr size, const GLvoid *data,
142 GLbitfield flags);
143
144 void GLAPIENTRY
145 _mesa_BufferData(GLenum target, GLsizeiptrARB size,
146 const GLvoid * data, GLenum usage);
147
148 void GLAPIENTRY
149 _mesa_BufferSubData(GLenum target, GLintptrARB offset,
150 GLsizeiptrARB size, const GLvoid * data);
151
152 void GLAPIENTRY
153 _mesa_GetBufferSubData(GLenum target, GLintptrARB offset,
154 GLsizeiptrARB size, void * data);
155
156 void GLAPIENTRY
157 _mesa_ClearBufferData(GLenum target, GLenum internalformat,
158 GLenum format, GLenum type,
159 const GLvoid * data);
160
161 void GLAPIENTRY
162 _mesa_ClearBufferSubData(GLenum target, GLenum internalformat,
163 GLintptr offset, GLsizeiptr size,
164 GLenum format, GLenum type,
165 const GLvoid * data);
166
167 void * GLAPIENTRY
168 _mesa_MapBuffer(GLenum target, GLenum access);
169
170 GLboolean GLAPIENTRY
171 _mesa_UnmapBuffer(GLenum target);
172
173 void GLAPIENTRY
174 _mesa_GetBufferParameteriv(GLenum target, GLenum pname, GLint *params);
175
176 void GLAPIENTRY
177 _mesa_GetBufferParameteri64v(GLenum target, GLenum pname, GLint64 *params);
178
179 void GLAPIENTRY
180 _mesa_GetBufferPointerv(GLenum target, GLenum pname, GLvoid **params);
181
182 void GLAPIENTRY
183 _mesa_CopyBufferSubData(GLenum readTarget, GLenum writeTarget,
184 GLintptr readOffset, GLintptr writeOffset,
185 GLsizeiptr size);
186
187 void * GLAPIENTRY
188 _mesa_MapBufferRange(GLenum target, GLintptr offset, GLsizeiptr length,
189 GLbitfield access);
190
191 void GLAPIENTRY
192 _mesa_FlushMappedBufferRange(GLenum target,
193 GLintptr offset, GLsizeiptr length);
194
195 GLenum GLAPIENTRY
196 _mesa_ObjectPurgeableAPPLE(GLenum objectType, GLuint name, GLenum option);
197
198 GLenum GLAPIENTRY
199 _mesa_ObjectUnpurgeableAPPLE(GLenum objectType, GLuint name, GLenum option);
200
201 void GLAPIENTRY
202 _mesa_GetObjectParameterivAPPLE(GLenum objectType, GLuint name,
203 GLenum pname, GLint* params);
204
205 void GLAPIENTRY
206 _mesa_BindBufferRange(GLenum target, GLuint index,
207 GLuint buffer, GLintptr offset, GLsizeiptr size);
208
209 void GLAPIENTRY
210 _mesa_BindBufferBase(GLenum target, GLuint index, GLuint buffer);
211
212 void GLAPIENTRY
213 _mesa_BindBuffersRange(GLenum target, GLuint first, GLsizei count,
214 const GLuint *buffers,
215 const GLintptr *offsets, const GLsizeiptr *sizes);
216 void GLAPIENTRY
217 _mesa_BindBuffersBase(GLenum target, GLuint first, GLsizei count,
218 const GLuint *buffers);
219 void GLAPIENTRY
220 _mesa_InvalidateBufferSubData(GLuint buffer, GLintptr offset,
221 GLsizeiptr length);
222
223 void GLAPIENTRY
224 _mesa_InvalidateBufferData(GLuint buffer);
225
226
227 #endif