2 * Mesa 3-D graphics library
4 * Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
5 * Copyright (C) 2009 VMware, Inc. All Rights Reserved.
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:
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
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.
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
)
45 return obj
->Mappings
[index
].Pointer
!= NULL
;
49 * Check whether the given buffer object is illegally mapped prior to
50 * drawing from (or reading back to) the buffer.
51 * Note that it's legal for a buffer to be mapped at draw/readback time
52 * if it was mapped persistently (See GL_ARB_buffer_storage spec).
53 * \return true if the buffer is illegally mapped, false otherwise
56 _mesa_check_disallowed_mapping(const struct gl_buffer_object
*obj
)
58 return _mesa_bufferobj_mapped(obj
, MAP_USER
) &&
59 !(obj
->Mappings
[MAP_USER
].AccessFlags
&
60 GL_MAP_PERSISTENT_BIT
);
64 * Is the given buffer object a user-created buffer object?
65 * Mesa uses default buffer objects in several places. Default buffers
66 * always have Name==0. User created buffers have Name!=0.
68 static inline GLboolean
69 _mesa_is_bufferobj(const struct gl_buffer_object
*obj
)
71 return obj
!= NULL
&& obj
->Name
!= 0;
76 _mesa_init_buffer_objects(struct gl_context
*ctx
);
79 _mesa_free_buffer_objects(struct gl_context
*ctx
);
82 _mesa_handle_bind_buffer_gen(struct gl_context
*ctx
,
84 struct gl_buffer_object
**buf_handle
,
88 _mesa_update_default_objects_buffer_objects(struct gl_context
*ctx
);
91 extern struct gl_buffer_object
*
92 _mesa_lookup_bufferobj(struct gl_context
*ctx
, GLuint buffer
);
94 extern struct gl_buffer_object
*
95 _mesa_lookup_bufferobj_locked(struct gl_context
*ctx
, GLuint buffer
);
97 extern struct gl_buffer_object
*
98 _mesa_lookup_bufferobj_err(struct gl_context
*ctx
, GLuint buffer
,
101 extern struct gl_buffer_object
*
102 _mesa_multi_bind_lookup_bufferobj(struct gl_context
*ctx
,
103 const GLuint
*buffers
,
104 GLuint index
, const char *caller
);
107 _mesa_initialize_buffer_object(struct gl_context
*ctx
,
108 struct gl_buffer_object
*obj
,
112 _mesa_delete_buffer_object(struct gl_context
*ctx
,
113 struct gl_buffer_object
*bufObj
);
116 _mesa_reference_buffer_object_(struct gl_context
*ctx
,
117 struct gl_buffer_object
**ptr
,
118 struct gl_buffer_object
*bufObj
);
121 _mesa_reference_buffer_object(struct gl_context
*ctx
,
122 struct gl_buffer_object
**ptr
,
123 struct gl_buffer_object
*bufObj
)
126 _mesa_reference_buffer_object_(ctx
, ptr
, bufObj
);
130 _mesa_total_buffer_object_memory(struct gl_context
*ctx
);
133 _mesa_init_buffer_object_functions(struct dd_function_table
*driver
);
136 _mesa_buffer_data(struct gl_context
*ctx
, struct gl_buffer_object
*bufObj
,
137 GLenum target
, GLsizeiptr size
, const GLvoid
*data
,
138 GLenum usage
, const char *func
);
141 _mesa_buffer_sub_data(struct gl_context
*ctx
, struct gl_buffer_object
*bufObj
,
142 GLintptr offset
, GLsizeiptr size
, const GLvoid
*data
);
145 _mesa_buffer_unmap_all_mappings(struct gl_context
*ctx
,
146 struct gl_buffer_object
*bufObj
);
149 _mesa_ClearBufferSubData_sw(struct gl_context
*ctx
,
150 GLintptr offset
, GLsizeiptr size
,
151 const GLvoid
*clearValue
,
152 GLsizeiptr clearValueSize
,
153 struct gl_buffer_object
*bufObj
);
159 _mesa_BindBuffer_no_error(GLenum target
, GLuint buffer
);
162 _mesa_BindBuffer(GLenum target
, GLuint buffer
);
165 _mesa_DeleteBuffers_no_error(GLsizei n
, const GLuint
* buffer
);
168 _mesa_DeleteBuffers(GLsizei n
, const GLuint
* buffer
);
171 _mesa_GenBuffers_no_error(GLsizei n
, GLuint
*buffers
);
174 _mesa_GenBuffers(GLsizei n
, GLuint
*buffers
);
177 _mesa_CreateBuffers_no_error(GLsizei n
, GLuint
*buffers
);
180 _mesa_CreateBuffers(GLsizei n
, GLuint
*buffers
);
183 _mesa_IsBuffer(GLuint buffer
);
186 _mesa_BufferStorage_no_error(GLenum target
, GLsizeiptr size
,
187 const GLvoid
*data
, GLbitfield flags
);
189 _mesa_BufferStorage(GLenum target
, GLsizeiptr size
, const GLvoid
*data
,
192 _mesa_BufferStorageMemEXT(GLenum target
, GLsizeiptr size
,
193 GLuint memory
, GLuint64 offset
);
195 _mesa_BufferStorageMemEXT_no_error(GLenum target
, GLsizeiptr size
,
196 GLuint memory
, GLuint64 offset
);
198 _mesa_NamedBufferStorage_no_error(GLuint buffer
, GLsizeiptr size
,
199 const GLvoid
*data
, GLbitfield flags
);
201 _mesa_NamedBufferStorage(GLuint buffer
, GLsizeiptr size
, const GLvoid
*data
,
204 _mesa_NamedBufferStorageMemEXT(GLuint buffer
, GLsizeiptr size
,
205 GLuint memory
, GLuint64 offset
);
207 _mesa_NamedBufferStorageMemEXT_no_error(GLuint buffer
, GLsizeiptr size
,
208 GLuint memory
, GLuint64 offset
);
211 _mesa_BufferData_no_error(GLenum target
, GLsizeiptr size
,
212 const GLvoid
*data
, GLenum usage
);
215 _mesa_BufferData(GLenum target
, GLsizeiptr size
,
216 const GLvoid
*data
, GLenum usage
);
219 _mesa_NamedBufferData_no_error(GLuint buffer
, GLsizeiptr size
,
220 const GLvoid
*data
, GLenum usage
);
223 _mesa_NamedBufferData(GLuint buffer
, GLsizeiptr size
,
224 const GLvoid
*data
, GLenum usage
);
227 _mesa_BufferSubData_no_error(GLenum target
, GLintptr offset
,
228 GLsizeiptr size
, const GLvoid
*data
);
230 _mesa_BufferSubData(GLenum target
, GLintptr offset
,
231 GLsizeiptr size
, const GLvoid
*data
);
234 _mesa_NamedBufferSubData_no_error(GLuint buffer
, GLintptr offset
,
235 GLsizeiptr size
, const GLvoid
*data
);
237 _mesa_NamedBufferSubData(GLuint buffer
, GLintptr offset
,
238 GLsizeiptr size
, const GLvoid
*data
);
241 _mesa_GetBufferSubData(GLenum target
, GLintptr offset
,
242 GLsizeiptr size
, GLvoid
*data
);
245 _mesa_GetNamedBufferSubData(GLuint buffer
, GLintptr offset
,
246 GLsizeiptr size
, GLvoid
*data
);
249 _mesa_ClearBufferData_no_error(GLenum target
, GLenum internalformat
,
250 GLenum format
, GLenum type
, const GLvoid
*data
);
253 _mesa_ClearBufferData(GLenum target
, GLenum internalformat
,
254 GLenum format
, GLenum type
,
258 _mesa_ClearNamedBufferData_no_error(GLuint buffer
, GLenum internalformat
,
259 GLenum format
, GLenum type
,
263 _mesa_ClearNamedBufferData(GLuint buffer
, GLenum internalformat
,
264 GLenum format
, GLenum type
,
268 _mesa_ClearBufferSubData_no_error(GLenum target
, GLenum internalformat
,
269 GLintptr offset
, GLsizeiptr size
,
270 GLenum format
, GLenum type
,
274 _mesa_ClearBufferSubData(GLenum target
, GLenum internalformat
,
275 GLintptr offset
, GLsizeiptr size
,
276 GLenum format
, GLenum type
,
280 _mesa_ClearNamedBufferSubData_no_error(GLuint buffer
, GLenum internalformat
,
281 GLintptr offset
, GLsizeiptr size
,
282 GLenum format
, GLenum type
,
286 _mesa_ClearNamedBufferSubData(GLuint buffer
, GLenum internalformat
,
287 GLintptr offset
, GLsizeiptr size
,
288 GLenum format
, GLenum type
,
292 _mesa_UnmapBuffer_no_error(GLenum target
);
294 _mesa_UnmapBuffer(GLenum target
);
297 _mesa_UnmapNamedBuffer_no_error(GLuint buffer
);
299 _mesa_UnmapNamedBuffer(GLuint buffer
);
302 _mesa_GetBufferParameteriv(GLenum target
, GLenum pname
, GLint
*params
);
305 _mesa_GetBufferParameteri64v(GLenum target
, GLenum pname
, GLint64
*params
);
308 _mesa_GetNamedBufferParameteriv(GLuint buffer
, GLenum pname
, GLint
*params
);
311 _mesa_GetNamedBufferParameteri64v(GLuint buffer
, GLenum pname
,
315 _mesa_GetBufferPointerv(GLenum target
, GLenum pname
, GLvoid
**params
);
318 _mesa_GetNamedBufferPointerv(GLuint buffer
, GLenum pname
, GLvoid
**params
);
321 _mesa_CopyBufferSubData_no_error(GLenum readTarget
, GLenum writeTarget
,
322 GLintptr readOffset
, GLintptr writeOffset
,
325 _mesa_CopyBufferSubData(GLenum readTarget
, GLenum writeTarget
,
326 GLintptr readOffset
, GLintptr writeOffset
,
330 _mesa_CopyNamedBufferSubData_no_error(GLuint readBuffer
, GLuint writeBuffer
,
332 GLintptr writeOffset
, GLsizeiptr size
);
334 _mesa_CopyNamedBufferSubData(GLuint readBuffer
, GLuint writeBuffer
,
335 GLintptr readOffset
, GLintptr writeOffset
,
339 _mesa_MapBufferRange_no_error(GLenum target
, GLintptr offset
,
340 GLsizeiptr length
, GLbitfield access
);
342 _mesa_MapBufferRange(GLenum target
, GLintptr offset
, GLsizeiptr length
,
346 _mesa_MapNamedBufferRange_no_error(GLuint buffer
, GLintptr offset
,
347 GLsizeiptr length
, GLbitfield access
);
349 _mesa_MapNamedBufferRange(GLuint buffer
, GLintptr offset
, GLsizeiptr length
,
353 _mesa_MapBuffer_no_error(GLenum target
, GLenum access
);
355 _mesa_MapBuffer(GLenum target
, GLenum access
);
358 _mesa_MapNamedBuffer_no_error(GLuint buffer
, GLenum access
);
360 _mesa_MapNamedBuffer(GLuint buffer
, GLenum access
);
363 _mesa_FlushMappedBufferRange_no_error(GLenum target
, GLintptr offset
,
366 _mesa_FlushMappedBufferRange(GLenum target
,
367 GLintptr offset
, GLsizeiptr length
);
370 _mesa_FlushMappedNamedBufferRange_no_error(GLuint buffer
, GLintptr offset
,
373 _mesa_FlushMappedNamedBufferRange(GLuint buffer
, GLintptr offset
,
377 _mesa_BindBufferRange_no_error(GLenum target
, GLuint index
, GLuint buffer
,
378 GLintptr offset
, GLsizeiptr size
);
380 _mesa_BindBufferRange(GLenum target
, GLuint index
,
381 GLuint buffer
, GLintptr offset
, GLsizeiptr size
);
384 _mesa_BindBufferBase(GLenum target
, GLuint index
, GLuint buffer
);
387 _mesa_BindBuffersRange(GLenum target
, GLuint first
, GLsizei count
,
388 const GLuint
*buffers
,
389 const GLintptr
*offsets
, const GLsizeiptr
*sizes
);
391 _mesa_BindBuffersBase(GLenum target
, GLuint first
, GLsizei count
,
392 const GLuint
*buffers
);
395 _mesa_InvalidateBufferSubData_no_error(GLuint buffer
, GLintptr offset
,
399 _mesa_InvalidateBufferSubData(GLuint buffer
, GLintptr offset
,
403 _mesa_InvalidateBufferData_no_error(GLuint buffer
);
406 _mesa_InvalidateBufferData(GLuint buffer
);
409 _mesa_BufferPageCommitmentARB(GLenum target
, GLintptr offset
, GLsizeiptr size
,
413 _mesa_NamedBufferPageCommitmentARB(GLuint buffer
, GLintptr offset
,
414 GLsizeiptr size
, GLboolean commit
);