main: Refactor ClearBuffer[Sub]Data.
[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 struct gl_buffer_object *
90 _mesa_lookup_bufferobj_locked(struct gl_context *ctx, GLuint buffer);
91
92 extern struct gl_buffer_object *
93 _mesa_lookup_bufferobj_err(struct gl_context *ctx, GLuint buffer,
94 const char *caller);
95
96 extern void
97 _mesa_begin_bufferobj_lookups(struct gl_context *ctx);
98
99 extern void
100 _mesa_end_bufferobj_lookups(struct gl_context *ctx);
101
102 extern struct gl_buffer_object *
103 _mesa_multi_bind_lookup_bufferobj(struct gl_context *ctx,
104 const GLuint *buffers,
105 GLuint index, const char *caller);
106
107 extern void
108 _mesa_initialize_buffer_object(struct gl_context *ctx,
109 struct gl_buffer_object *obj,
110 GLuint name);
111
112 extern void
113 _mesa_reference_buffer_object_(struct gl_context *ctx,
114 struct gl_buffer_object **ptr,
115 struct gl_buffer_object *bufObj);
116
117 static inline void
118 _mesa_reference_buffer_object(struct gl_context *ctx,
119 struct gl_buffer_object **ptr,
120 struct gl_buffer_object *bufObj)
121 {
122 if (*ptr != bufObj)
123 _mesa_reference_buffer_object_(ctx, ptr, bufObj);
124 }
125
126 extern GLuint
127 _mesa_total_buffer_object_memory(struct gl_context *ctx);
128
129 extern void
130 _mesa_init_buffer_object_functions(struct dd_function_table *driver);
131
132 extern void
133 _mesa_buffer_storage(struct gl_context *ctx, struct gl_buffer_object *bufObj,
134 GLenum target, GLsizeiptr size, const GLvoid *data,
135 GLbitfield flags, const char *func);
136
137 extern void
138 _mesa_buffer_data(struct gl_context *ctx, struct gl_buffer_object *bufObj,
139 GLenum target, GLsizeiptr size, const GLvoid *data,
140 GLenum usage, const char *func);
141
142 extern void
143 _mesa_buffer_sub_data(struct gl_context *ctx, struct gl_buffer_object *bufObj,
144 GLintptr offset, GLsizeiptr size, const GLvoid *data,
145 const char *func);
146
147 extern void
148 _mesa_buffer_unmap_all_mappings(struct gl_context *ctx,
149 struct gl_buffer_object *bufObj);
150
151 extern void
152 _mesa_copy_buffer_sub_data(struct gl_context *ctx,
153 struct gl_buffer_object *src,
154 struct gl_buffer_object *dst,
155 GLintptr readOffset, GLintptr writeOffset,
156 GLsizeiptr size, const char *func);
157
158 extern void
159 _mesa_ClearBufferSubData_sw(struct gl_context *ctx,
160 GLintptr offset, GLsizeiptr size,
161 const GLvoid *clearValue,
162 GLsizeiptr clearValueSize,
163 struct gl_buffer_object *bufObj);
164
165 extern void
166 _mesa_clear_buffer_sub_data(struct gl_context *ctx,
167 struct gl_buffer_object *bufObj,
168 GLenum internalformat,
169 GLintptr offset, GLsizeiptr size,
170 GLenum format, GLenum type,
171 const GLvoid *data,
172 const char *func, bool subdata);
173
174 /*
175 * API functions
176 */
177 void GLAPIENTRY
178 _mesa_BindBuffer(GLenum target, GLuint buffer);
179
180 void GLAPIENTRY
181 _mesa_DeleteBuffers(GLsizei n, const GLuint * buffer);
182
183 void GLAPIENTRY
184 _mesa_GenBuffers(GLsizei n, GLuint *buffers);
185
186 void GLAPIENTRY
187 _mesa_CreateBuffers(GLsizei n, GLuint *buffers);
188
189 GLboolean GLAPIENTRY
190 _mesa_IsBuffer(GLuint buffer);
191
192 void GLAPIENTRY
193 _mesa_BufferStorage(GLenum target, GLsizeiptr size, const GLvoid *data,
194 GLbitfield flags);
195
196 void GLAPIENTRY
197 _mesa_NamedBufferStorage(GLuint buffer, GLsizeiptr size, const GLvoid *data,
198 GLbitfield flags);
199
200 void GLAPIENTRY
201 _mesa_BufferData(GLenum target, GLsizeiptr size,
202 const GLvoid *data, GLenum usage);
203
204 void GLAPIENTRY
205 _mesa_NamedBufferData(GLuint buffer, GLsizeiptr size,
206 const GLvoid *data, GLenum usage);
207
208 void GLAPIENTRY
209 _mesa_BufferSubData(GLenum target, GLintptr offset,
210 GLsizeiptr size, const GLvoid *data);
211
212 void GLAPIENTRY
213 _mesa_NamedBufferSubData(GLuint buffer, GLintptr offset,
214 GLsizeiptr size, const GLvoid *data);
215
216 void GLAPIENTRY
217 _mesa_GetBufferSubData(GLenum target, GLintptrARB offset,
218 GLsizeiptrARB size, void * data);
219
220 void GLAPIENTRY
221 _mesa_ClearBufferData(GLenum target, GLenum internalformat,
222 GLenum format, GLenum type,
223 const GLvoid * data);
224
225 void GLAPIENTRY
226 _mesa_ClearBufferSubData(GLenum target, GLenum internalformat,
227 GLintptr offset, GLsizeiptr size,
228 GLenum format, GLenum type,
229 const GLvoid * data);
230
231 void * GLAPIENTRY
232 _mesa_MapBuffer(GLenum target, GLenum access);
233
234 GLboolean GLAPIENTRY
235 _mesa_UnmapBuffer(GLenum target);
236
237 void GLAPIENTRY
238 _mesa_GetBufferParameteriv(GLenum target, GLenum pname, GLint *params);
239
240 void GLAPIENTRY
241 _mesa_GetBufferParameteri64v(GLenum target, GLenum pname, GLint64 *params);
242
243 void GLAPIENTRY
244 _mesa_GetBufferPointerv(GLenum target, GLenum pname, GLvoid **params);
245
246 void GLAPIENTRY
247 _mesa_CopyBufferSubData(GLenum readTarget, GLenum writeTarget,
248 GLintptr readOffset, GLintptr writeOffset,
249 GLsizeiptr size);
250
251 void GLAPIENTRY
252 _mesa_CopyNamedBufferSubData(GLuint readBuffer, GLuint writeBuffer,
253 GLintptr readOffset, GLintptr writeOffset,
254 GLsizeiptr size);
255
256 void * GLAPIENTRY
257 _mesa_MapBufferRange(GLenum target, GLintptr offset, GLsizeiptr length,
258 GLbitfield access);
259
260 void GLAPIENTRY
261 _mesa_FlushMappedBufferRange(GLenum target,
262 GLintptr offset, GLsizeiptr length);
263
264 GLenum GLAPIENTRY
265 _mesa_ObjectPurgeableAPPLE(GLenum objectType, GLuint name, GLenum option);
266
267 GLenum GLAPIENTRY
268 _mesa_ObjectUnpurgeableAPPLE(GLenum objectType, GLuint name, GLenum option);
269
270 void GLAPIENTRY
271 _mesa_GetObjectParameterivAPPLE(GLenum objectType, GLuint name,
272 GLenum pname, GLint* params);
273
274 void GLAPIENTRY
275 _mesa_BindBufferRange(GLenum target, GLuint index,
276 GLuint buffer, GLintptr offset, GLsizeiptr size);
277
278 void GLAPIENTRY
279 _mesa_BindBufferBase(GLenum target, GLuint index, GLuint buffer);
280
281 void GLAPIENTRY
282 _mesa_BindBuffersRange(GLenum target, GLuint first, GLsizei count,
283 const GLuint *buffers,
284 const GLintptr *offsets, const GLsizeiptr *sizes);
285 void GLAPIENTRY
286 _mesa_BindBuffersBase(GLenum target, GLuint first, GLsizei count,
287 const GLuint *buffers);
288 void GLAPIENTRY
289 _mesa_InvalidateBufferSubData(GLuint buffer, GLintptr offset,
290 GLsizeiptr length);
291
292 void GLAPIENTRY
293 _mesa_InvalidateBufferData(GLuint buffer);
294
295
296 #endif