minor clean-ups
[mesa.git] / src / mesa / main / bufferobj.c
1 /*
2 * Mesa 3-D graphics library
3 * Version: 6.5
4 *
5 * Copyright (C) 1999-2006 Brian Paul 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 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25
26 /**
27 * \file bufferobj.c
28 * \brief Functions for the GL_ARB_vertex_buffer_object extension.
29 * \author Brian Paul, Ian Romanick
30 */
31
32
33 #include "glheader.h"
34 #include "hash.h"
35 #include "imports.h"
36 #include "image.h"
37 #include "context.h"
38 #include "bufferobj.h"
39
40
41 /**
42 * Get the buffer object bound to the specified target in a GL context.
43 *
44 * \param ctx GL context
45 * \param target Buffer object target to be retrieved. Currently this must
46 * be either \c GL_ARRAY_BUFFER or \c GL_ELEMENT_ARRAY_BUFFER.
47 * \param caller Name of calling function for recording errors.
48 * \return A pointer to the buffer object bound to \c target in the
49 * specified context or \c NULL if \c target is invalid or no
50 * buffer object is bound.
51 */
52 static INLINE struct gl_buffer_object *
53 buffer_object_get_target(GLcontext *ctx, GLenum target, const char *caller)
54 {
55 struct gl_buffer_object * bufObj = NULL;
56
57 switch (target) {
58 case GL_ARRAY_BUFFER_ARB:
59 bufObj = ctx->Array.ArrayBufferObj;
60 break;
61 case GL_ELEMENT_ARRAY_BUFFER_ARB:
62 bufObj = ctx->Array.ElementArrayBufferObj;
63 break;
64 case GL_PIXEL_PACK_BUFFER_EXT:
65 bufObj = ctx->Pack.BufferObj;
66 break;
67 case GL_PIXEL_UNPACK_BUFFER_EXT:
68 bufObj = ctx->Unpack.BufferObj;
69 break;
70 default:
71 _mesa_error(ctx, GL_INVALID_ENUM, "gl%s(target)", caller);
72 return NULL;
73 }
74
75 if (bufObj->Name == 0)
76 return NULL;
77
78 return bufObj;
79 }
80
81
82 /**
83 * Tests the subdata range parameters and sets the GL error code for
84 * \c glBufferSubDataARB and \c glGetBufferSubDataARB.
85 *
86 * \param ctx GL context.
87 * \param target Buffer object target on which to operate.
88 * \param offset Offset of the first byte of the subdata range.
89 * \param size Size, in bytes, of the subdata range.
90 * \param caller Name of calling function for recording errors.
91 * \return A pointer to the buffer object bound to \c target in the
92 * specified context or \c NULL if any of the parameter or state
93 * conditions for \c glBufferSubDataARB or \c glGetBufferSubDataARB
94 * are invalid.
95 *
96 * \sa glBufferSubDataARB, glGetBufferSubDataARB
97 */
98 static struct gl_buffer_object *
99 buffer_object_subdata_range_good( GLcontext * ctx, GLenum target,
100 GLintptrARB offset, GLsizeiptrARB size,
101 const char *caller )
102 {
103 struct gl_buffer_object *bufObj;
104
105 if (size < 0) {
106 _mesa_error(ctx, GL_INVALID_VALUE, "%s(size < 0)", caller);
107 return NULL;
108 }
109
110 if (offset < 0) {
111 _mesa_error(ctx, GL_INVALID_VALUE, "%s(offset < 0)", caller);
112 return NULL;
113 }
114
115 bufObj = buffer_object_get_target(ctx, target, caller);
116 if (!bufObj || bufObj->Name == 0) {
117 return NULL;
118 }
119
120 if ((GLuint) (offset + size) > bufObj->Size) {
121 _mesa_error(ctx, GL_INVALID_VALUE,
122 "%s(size + offset > buffer size)", caller);
123 return NULL;
124 }
125
126 if (bufObj->Pointer) {
127 /* Buffer is currently mapped */
128 _mesa_error(ctx, GL_INVALID_OPERATION, "%s", caller);
129 return NULL;
130 }
131
132 return bufObj;
133 }
134
135
136 /**
137 * Allocate and initialize a new buffer object.
138 *
139 * This function is intended to be called via
140 * \c dd_function_table::NewBufferObject.
141 */
142 struct gl_buffer_object *
143 _mesa_new_buffer_object( GLcontext *ctx, GLuint name, GLenum target )
144 {
145 struct gl_buffer_object *obj;
146
147 (void) ctx;
148
149 obj = MALLOC_STRUCT(gl_buffer_object);
150 _mesa_initialize_buffer_object(obj, name, target);
151 return obj;
152 }
153
154
155 /**
156 * Delete a buffer object.
157 *
158 * This function is intended to be called via
159 * \c dd_function_table::DeleteBuffer.
160 */
161 void
162 _mesa_delete_buffer_object( GLcontext *ctx, struct gl_buffer_object *bufObj )
163 {
164 (void) ctx;
165
166 if (bufObj->Data)
167 _mesa_free(bufObj->Data);
168 _mesa_free(bufObj);
169 }
170
171
172 /**
173 * Initialize a buffer object to default values.
174 */
175 void
176 _mesa_initialize_buffer_object( struct gl_buffer_object *obj,
177 GLuint name, GLenum target )
178 {
179 (void) target;
180
181 _mesa_bzero(obj, sizeof(struct gl_buffer_object));
182 obj->RefCount = 1;
183 obj->Name = name;
184 obj->Usage = GL_STATIC_DRAW_ARB;
185 obj->Access = GL_READ_WRITE_ARB;
186 }
187
188
189 /**
190 * Add the given buffer object to the buffer object pool.
191 */
192 void
193 _mesa_save_buffer_object( GLcontext *ctx, struct gl_buffer_object *obj )
194 {
195 if (obj->Name > 0) {
196 /* insert into hash table */
197 _mesa_HashInsert(ctx->Shared->BufferObjects, obj->Name, obj);
198 }
199 }
200
201
202 /**
203 * Remove the given buffer object from the buffer object pool.
204 * Do not deallocate the buffer object though.
205 */
206 void
207 _mesa_remove_buffer_object( GLcontext *ctx, struct gl_buffer_object *bufObj )
208 {
209 if (bufObj->Name > 0) {
210 /* remove from hash table */
211 _mesa_HashRemove(ctx->Shared->BufferObjects, bufObj->Name);
212 }
213 }
214
215
216 /**
217 * Allocate space for and store data in a buffer object. Any data that was
218 * previously stored in the buffer object is lost. If \c data is \c NULL,
219 * memory will be allocated, but no copy will occur.
220 *
221 * This function is intended to be called via
222 * \c dd_function_table::BufferData. This function need not set GL error
223 * codes. The input parameters will have been tested before calling.
224 *
225 * \param ctx GL context.
226 * \param target Buffer object target on which to operate.
227 * \param size Size, in bytes, of the new data store.
228 * \param data Pointer to the data to store in the buffer object. This
229 * pointer may be \c NULL.
230 * \param usage Hints about how the data will be used.
231 * \param bufObj Object to be used.
232 *
233 * \sa glBufferDataARB, dd_function_table::BufferData.
234 */
235 void
236 _mesa_buffer_data( GLcontext *ctx, GLenum target, GLsizeiptrARB size,
237 const GLvoid * data, GLenum usage,
238 struct gl_buffer_object * bufObj )
239 {
240 void * new_data;
241
242 (void) ctx; (void) target;
243
244 new_data = _mesa_realloc( bufObj->Data, bufObj->Size, size );
245 if (new_data) {
246 bufObj->Data = (GLubyte *) new_data;
247 bufObj->Size = size;
248 bufObj->Usage = usage;
249
250 if (data) {
251 _mesa_memcpy( bufObj->Data, data, size );
252 }
253 }
254 }
255
256
257 /**
258 * Replace data in a subrange of buffer object. If the data range
259 * specified by \c size + \c offset extends beyond the end of the buffer or
260 * if \c data is \c NULL, no copy is performed.
261 *
262 * This function is intended to be called by
263 * \c dd_function_table::BufferSubData. This function need not set GL error
264 * codes. The input parameters will have been tested before calling.
265 *
266 * \param ctx GL context.
267 * \param target Buffer object target on which to operate.
268 * \param offset Offset of the first byte to be modified.
269 * \param size Size, in bytes, of the data range.
270 * \param data Pointer to the data to store in the buffer object.
271 * \param bufObj Object to be used.
272 *
273 * \sa glBufferSubDataARB, dd_function_table::BufferSubData.
274 */
275 void
276 _mesa_buffer_subdata( GLcontext *ctx, GLenum target, GLintptrARB offset,
277 GLsizeiptrARB size, const GLvoid * data,
278 struct gl_buffer_object * bufObj )
279 {
280 (void) ctx; (void) target;
281
282 if (bufObj->Data && ((GLuint) (size + offset) <= bufObj->Size)) {
283 _mesa_memcpy( (GLubyte *) bufObj->Data + offset, data, size );
284 }
285 }
286
287
288 /**
289 * Retrieve data from a subrange of buffer object. If the data range
290 * specified by \c size + \c offset extends beyond the end of the buffer or
291 * if \c data is \c NULL, no copy is performed.
292 *
293 * This function is intended to be called by
294 * \c dd_function_table::BufferGetSubData. This function need not set GL error
295 * codes. The input parameters will have been tested before calling.
296 *
297 * \param ctx GL context.
298 * \param target Buffer object target on which to operate.
299 * \param offset Offset of the first byte to be modified.
300 * \param size Size, in bytes, of the data range.
301 * \param data Pointer to the data to store in the buffer object.
302 * \param bufObj Object to be used.
303 *
304 * \sa glBufferGetSubDataARB, dd_function_table::GetBufferSubData.
305 */
306 void
307 _mesa_buffer_get_subdata( GLcontext *ctx, GLenum target, GLintptrARB offset,
308 GLsizeiptrARB size, GLvoid * data,
309 struct gl_buffer_object * bufObj )
310 {
311 (void) ctx; (void) target;
312
313 if (bufObj->Data && ((GLsizeiptrARB) (size + offset) <= bufObj->Size)) {
314 _mesa_memcpy( data, (GLubyte *) bufObj->Data + offset, size );
315 }
316 }
317
318
319 /**
320 * Fallback function called via ctx->Driver.MapBuffer().
321 * Hardware drivers that really implement buffer objects should never use
322 * function.
323 *
324 * The input parameters will have been already tested for errors.
325 *
326 * \param ctx GL context.
327 * \param target Buffer object target on which to operate.
328 * \param access Information about how the buffer will be accessed.
329 * \param bufObj Object to be mapped.
330 * \return A pointer to the object's internal data store that can be accessed
331 * by the processor
332 *
333 * \sa glMapBufferARB, dd_function_table::MapBuffer
334 */
335 void *
336 _mesa_buffer_map( GLcontext *ctx, GLenum target, GLenum access,
337 struct gl_buffer_object *bufObj )
338 {
339 (void) ctx;
340 (void) target;
341 (void) access;
342 ASSERT(!bufObj->OnCard);
343 /* Just return a direct pointer to the data */
344 if (bufObj->Pointer) {
345 /* already mapped! */
346 return NULL;
347 }
348 bufObj->Pointer = bufObj->Data;
349 return bufObj->Pointer;
350 }
351
352
353 /**
354 * Fallback function called via ctx->Driver.MapBuffer().
355 * Hardware drivers that really implement buffer objects should never use
356 * function.
357 *
358 * The input parameters will have been already tested for errors.
359 *
360 * \sa glUnmapBufferARB, dd_function_table::UnmapBuffer
361 */
362 GLboolean
363 _mesa_buffer_unmap( GLcontext *ctx, GLenum target,
364 struct gl_buffer_object *bufObj )
365 {
366 (void) ctx;
367 (void) target;
368 ASSERT(!bufObj->OnCard);
369 /* XXX we might assert here that bufObj->Pointer is non-null */
370 bufObj->Pointer = NULL;
371 return GL_TRUE;
372 }
373
374
375 /**
376 * Initialize the state associated with buffer objects
377 */
378 void
379 _mesa_init_buffer_objects( GLcontext *ctx )
380 {
381 GLuint i;
382
383 /* Allocate the default buffer object and set refcount so high that
384 * it never gets deleted.
385 */
386 ctx->Array.NullBufferObj = _mesa_new_buffer_object(ctx, 0, 0);
387 if (ctx->Array.NullBufferObj)
388 ctx->Array.NullBufferObj->RefCount = 1000;
389
390 ctx->Array.ArrayBufferObj = ctx->Array.NullBufferObj;
391 ctx->Array.ElementArrayBufferObj = ctx->Array.NullBufferObj;
392
393 /* Vertex array buffers */
394 ctx->Array.Vertex.BufferObj = ctx->Array.NullBufferObj;
395 ctx->Array.Normal.BufferObj = ctx->Array.NullBufferObj;
396 ctx->Array.Color.BufferObj = ctx->Array.NullBufferObj;
397 ctx->Array.SecondaryColor.BufferObj = ctx->Array.NullBufferObj;
398 ctx->Array.FogCoord.BufferObj = ctx->Array.NullBufferObj;
399 ctx->Array.Index.BufferObj = ctx->Array.NullBufferObj;
400 for (i = 0; i < MAX_TEXTURE_UNITS; i++) {
401 ctx->Array.TexCoord[i].BufferObj = ctx->Array.NullBufferObj;
402 }
403 ctx->Array.EdgeFlag.BufferObj = ctx->Array.NullBufferObj;
404 for (i = 0; i < VERT_ATTRIB_MAX; i++) {
405 ctx->Array.VertexAttrib[i].BufferObj = ctx->Array.NullBufferObj;
406 }
407 }
408
409
410 /**
411 * When we're about to read pixel data out of a PBO (via glDrawPixels,
412 * glTexImage, etc) or write data into a PBO (via glReadPixels,
413 * glGetTexImage, etc) we call this function to check that we're not
414 * going to read out of bounds.
415 *
416 * XXX This would also be a convenient time to check that the PBO isn't
417 * currently mapped. Whoever calls this function should check for that.
418 * Remember, we can't use a PBO when it's mapped!
419 *
420 * \param width width of image to read/write
421 * \param height height of image to read/write
422 * \param depth depth of image to read/write
423 * \param format format of image to read/write
424 * \param type datatype of image to read/write
425 * \param ptr the user-provided pointer/offset
426 * \return GL_TRUE if the PBO access is OK, GL_FALSE if the access would
427 * go out of bounds.
428 */
429 GLboolean
430 _mesa_validate_pbo_access(GLuint dimensions,
431 const struct gl_pixelstore_attrib *pack,
432 GLsizei width, GLsizei height, GLsizei depth,
433 GLenum format, GLenum type, const GLvoid *ptr)
434 {
435 GLvoid *start, *end;
436 const GLubyte *sizeAddr; /* buffer size, cast to a pointer */
437
438 ASSERT(pack->BufferObj->Name != 0);
439
440 if (pack->BufferObj->Size == 0)
441 /* no buffer! */
442 return GL_FALSE;
443
444 /* get address of first pixel we'll read */
445 start = _mesa_image_address(dimensions, pack, ptr, width, height,
446 format, type, 0, 0, 0);
447
448 /* get address just past the last pixel we'll read */
449 end = _mesa_image_address(dimensions, pack, ptr, width, height,
450 format, type, depth-1, height-1, width);
451
452
453 sizeAddr = ((const GLubyte *) 0) + pack->BufferObj->Size;
454
455 if ((const GLubyte *) start > sizeAddr) {
456 /* This will catch negative values / wrap-around */
457 return GL_FALSE;
458 }
459 if ((const GLubyte *) end > sizeAddr) {
460 /* Image read goes beyond end of buffer */
461 return GL_FALSE;
462 }
463
464 /* OK! */
465 return GL_TRUE;
466 }
467
468
469
470
471 /**********************************************************************/
472 /* API Functions */
473 /**********************************************************************/
474
475 void GLAPIENTRY
476 _mesa_BindBufferARB(GLenum target, GLuint buffer)
477 {
478 GET_CURRENT_CONTEXT(ctx);
479 struct gl_buffer_object *oldBufObj;
480 struct gl_buffer_object *newBufObj = NULL;
481 ASSERT_OUTSIDE_BEGIN_END(ctx);
482
483 oldBufObj = buffer_object_get_target( ctx, target, "BindBufferARB" );
484 if (oldBufObj && oldBufObj->Name == buffer)
485 return; /* rebinding the same buffer object- no change */
486
487 /*
488 * Get pointer to new buffer object (newBufObj)
489 */
490 if (buffer == 0) {
491 /* The spec says there's not a buffer object named 0, but we use
492 * one internally because it simplifies things.
493 */
494 newBufObj = ctx->Array.NullBufferObj;
495 }
496 else {
497 /* non-default buffer object */
498 const struct _mesa_HashTable *hash = ctx->Shared->BufferObjects;
499 newBufObj = (struct gl_buffer_object *) _mesa_HashLookup(hash, buffer);
500 if (!newBufObj) {
501 /* if this is a new buffer object id, allocate a buffer object now */
502 ASSERT(ctx->Driver.NewBufferObject);
503 newBufObj = ctx->Driver.NewBufferObject(ctx, buffer, target);
504 if (!newBufObj) {
505 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glBindBufferARB");
506 return;
507 }
508 _mesa_save_buffer_object(ctx, newBufObj);
509 }
510 newBufObj->RefCount++;
511 }
512
513 switch (target) {
514 case GL_ARRAY_BUFFER_ARB:
515 ctx->Array.ArrayBufferObj = newBufObj;
516 break;
517 case GL_ELEMENT_ARRAY_BUFFER_ARB:
518 ctx->Array.ElementArrayBufferObj = newBufObj;
519 break;
520 case GL_PIXEL_PACK_BUFFER_EXT:
521 ctx->Pack.BufferObj = newBufObj;
522 break;
523 case GL_PIXEL_UNPACK_BUFFER_EXT:
524 ctx->Unpack.BufferObj = newBufObj;
525 break;
526 default:
527 _mesa_problem(ctx, "Bad target in _mesa_BindBufferARB");
528 return;
529 }
530
531 /* Pass BindBuffer call to device driver */
532 if (ctx->Driver.BindBuffer && newBufObj)
533 ctx->Driver.BindBuffer( ctx, target, newBufObj );
534
535 if (oldBufObj) {
536 oldBufObj->RefCount--;
537 assert(oldBufObj->RefCount >= 0);
538 if (oldBufObj->RefCount == 0) {
539 assert(oldBufObj->Name != 0);
540 ASSERT(ctx->Driver.DeleteBuffer);
541 ctx->Driver.DeleteBuffer( ctx, oldBufObj );
542 }
543 }
544 }
545
546
547 /**
548 * Delete a set of buffer objects.
549 *
550 * \param n Number of buffer objects to delete.
551 * \param ids Array of \c n buffer object IDs.
552 */
553 void GLAPIENTRY
554 _mesa_DeleteBuffersARB(GLsizei n, const GLuint *ids)
555 {
556 GET_CURRENT_CONTEXT(ctx);
557 GLsizei i;
558 ASSERT_OUTSIDE_BEGIN_END(ctx);
559
560 if (n < 0) {
561 _mesa_error(ctx, GL_INVALID_VALUE, "glDeleteBuffersARB(n)");
562 return;
563 }
564
565 _glthread_LOCK_MUTEX(ctx->Shared->Mutex);
566
567 for (i = 0; i < n; i++) {
568 if (ids[i] != 0) {
569 struct gl_buffer_object *bufObj = (struct gl_buffer_object *)
570 _mesa_HashLookup(ctx->Shared->BufferObjects, ids[i]);
571 if (bufObj) {
572 /* unbind any vertex pointers bound to this buffer */
573 GLuint j;
574
575 ASSERT(bufObj->Name == ids[i]);
576
577 if (ctx->Array.Vertex.BufferObj == bufObj) {
578 bufObj->RefCount--;
579 ctx->Array.Vertex.BufferObj = ctx->Array.NullBufferObj;
580 ctx->Array.NullBufferObj->RefCount++;
581 }
582 if (ctx->Array.Normal.BufferObj == bufObj) {
583 bufObj->RefCount--;
584 ctx->Array.Normal.BufferObj = ctx->Array.NullBufferObj;
585 ctx->Array.NullBufferObj->RefCount++;
586 }
587 if (ctx->Array.Color.BufferObj == bufObj) {
588 bufObj->RefCount--;
589 ctx->Array.Color.BufferObj = ctx->Array.NullBufferObj;
590 ctx->Array.NullBufferObj->RefCount++;
591 }
592 if (ctx->Array.SecondaryColor.BufferObj == bufObj) {
593 bufObj->RefCount--;
594 ctx->Array.SecondaryColor.BufferObj = ctx->Array.NullBufferObj;
595 ctx->Array.NullBufferObj->RefCount++;
596 }
597 if (ctx->Array.FogCoord.BufferObj == bufObj) {
598 bufObj->RefCount--;
599 ctx->Array.FogCoord.BufferObj = ctx->Array.NullBufferObj;
600 ctx->Array.NullBufferObj->RefCount++;
601 }
602 if (ctx->Array.Index.BufferObj == bufObj) {
603 bufObj->RefCount--;
604 ctx->Array.Index.BufferObj = ctx->Array.NullBufferObj;
605 ctx->Array.NullBufferObj->RefCount++;
606 }
607 if (ctx->Array.EdgeFlag.BufferObj == bufObj) {
608 bufObj->RefCount--;
609 ctx->Array.EdgeFlag.BufferObj = ctx->Array.NullBufferObj;
610 ctx->Array.NullBufferObj->RefCount++;
611 }
612 for (j = 0; j < MAX_TEXTURE_UNITS; j++) {
613 if (ctx->Array.TexCoord[j].BufferObj == bufObj) {
614 bufObj->RefCount--;
615 ctx->Array.TexCoord[j].BufferObj = ctx->Array.NullBufferObj;
616 ctx->Array.NullBufferObj->RefCount++;
617 }
618 }
619 for (j = 0; j < VERT_ATTRIB_MAX; j++) {
620 if (ctx->Array.VertexAttrib[j].BufferObj == bufObj) {
621 bufObj->RefCount--;
622 ctx->Array.VertexAttrib[j].BufferObj = ctx->Array.NullBufferObj;
623 ctx->Array.NullBufferObj->RefCount++;
624 }
625 }
626
627 if (ctx->Array.ArrayBufferObj == bufObj) {
628 _mesa_BindBufferARB( GL_ARRAY_BUFFER_ARB, 0 );
629 }
630 if (ctx->Array.ElementArrayBufferObj == bufObj) {
631 _mesa_BindBufferARB( GL_ELEMENT_ARRAY_BUFFER_ARB, 0 );
632 }
633
634 if (ctx->Pack.BufferObj == bufObj) {
635 _mesa_BindBufferARB( GL_PIXEL_PACK_BUFFER_EXT, 0 );
636 }
637 if (ctx->Unpack.BufferObj == bufObj) {
638 _mesa_BindBufferARB( GL_PIXEL_UNPACK_BUFFER_EXT, 0 );
639 }
640
641 /* The ID is immediately freed for re-use */
642 _mesa_remove_buffer_object(ctx, bufObj);
643 bufObj->RefCount--;
644 if (bufObj->RefCount <= 0) {
645 ASSERT(ctx->Array.ArrayBufferObj != bufObj);
646 ASSERT(ctx->Array.ElementArrayBufferObj != bufObj);
647 ASSERT(ctx->Array.Vertex.BufferObj != bufObj);
648 ASSERT(ctx->Driver.DeleteBuffer);
649 ctx->Driver.DeleteBuffer(ctx, bufObj);
650 }
651 }
652 }
653 }
654
655 _glthread_UNLOCK_MUTEX(ctx->Shared->Mutex);
656 }
657
658
659 /**
660 * Generate a set of unique buffer object IDs and store them in \c buffer.
661 *
662 * \param n Number of IDs to generate.
663 * \param buffer Array of \c n locations to store the IDs.
664 */
665 void GLAPIENTRY
666 _mesa_GenBuffersARB(GLsizei n, GLuint *buffer)
667 {
668 GET_CURRENT_CONTEXT(ctx);
669 GLuint first;
670 GLint i;
671 ASSERT_OUTSIDE_BEGIN_END(ctx);
672
673 if (n < 0) {
674 _mesa_error(ctx, GL_INVALID_VALUE, "glGenBuffersARB");
675 return;
676 }
677
678 if (!buffer) {
679 return;
680 }
681
682 /*
683 * This must be atomic (generation and allocation of buffer object IDs)
684 */
685 _glthread_LOCK_MUTEX(ctx->Shared->Mutex);
686
687 first = _mesa_HashFindFreeKeyBlock(ctx->Shared->BufferObjects, n);
688
689 /* Allocate new, empty buffer objects and return identifiers */
690 for (i = 0; i < n; i++) {
691 struct gl_buffer_object *bufObj;
692 GLuint name = first + i;
693 GLenum target = 0;
694 bufObj = ctx->Driver.NewBufferObject( ctx, name, target );
695 if (!bufObj) {
696 _glthread_UNLOCK_MUTEX(ctx->Shared->Mutex);
697 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glGenBuffersARB");
698 return;
699 }
700 _mesa_save_buffer_object(ctx, bufObj);
701 buffer[i] = first + i;
702 }
703
704 _glthread_UNLOCK_MUTEX(ctx->Shared->Mutex);
705 }
706
707
708 /**
709 * Determine if ID is the name of a buffer object.
710 *
711 * \param id ID of the potential buffer object.
712 * \return \c GL_TRUE if \c id is the name of a buffer object,
713 * \c GL_FALSE otherwise.
714 */
715 GLboolean GLAPIENTRY
716 _mesa_IsBufferARB(GLuint id)
717 {
718 struct gl_buffer_object * bufObj;
719 GET_CURRENT_CONTEXT(ctx);
720 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
721
722 if (id == 0)
723 return GL_FALSE;
724
725 _glthread_LOCK_MUTEX(ctx->Shared->Mutex);
726 bufObj = (struct gl_buffer_object *) _mesa_HashLookup(ctx->Shared->BufferObjects, id);
727 _glthread_UNLOCK_MUTEX(ctx->Shared->Mutex);
728
729 return bufObj ? GL_TRUE : GL_FALSE;
730 }
731
732
733 void GLAPIENTRY
734 _mesa_BufferDataARB(GLenum target, GLsizeiptrARB size,
735 const GLvoid * data, GLenum usage)
736 {
737 GET_CURRENT_CONTEXT(ctx);
738 struct gl_buffer_object *bufObj;
739 ASSERT_OUTSIDE_BEGIN_END(ctx);
740
741 if (size < 0) {
742 _mesa_error(ctx, GL_INVALID_VALUE, "glBufferDataARB(size < 0)");
743 return;
744 }
745
746 switch (usage) {
747 case GL_STREAM_DRAW_ARB:
748 case GL_STREAM_READ_ARB:
749 case GL_STREAM_COPY_ARB:
750 case GL_STATIC_DRAW_ARB:
751 case GL_STATIC_READ_ARB:
752 case GL_STATIC_COPY_ARB:
753 case GL_DYNAMIC_DRAW_ARB:
754 case GL_DYNAMIC_READ_ARB:
755 case GL_DYNAMIC_COPY_ARB:
756 /* OK */
757 break;
758 default:
759 _mesa_error(ctx, GL_INVALID_ENUM, "glBufferDataARB(usage)");
760 return;
761 }
762
763 bufObj = buffer_object_get_target( ctx, target, "BufferDataARB" );
764 if (!bufObj || bufObj->Name ==0) {
765 _mesa_error(ctx, GL_INVALID_OPERATION, "glBufferDataARB" );
766 return;
767 }
768
769 if (bufObj->Pointer) {
770 _mesa_error(ctx, GL_INVALID_OPERATION, "glBufferDataARB(buffer is mapped)" );
771 return;
772 }
773
774 ASSERT(ctx->Driver.BufferData);
775
776 /* Give the buffer object to the driver! <data> may be null! */
777 ctx->Driver.BufferData( ctx, target, size, data, usage, bufObj );
778 }
779
780
781 void GLAPIENTRY
782 _mesa_BufferSubDataARB(GLenum target, GLintptrARB offset,
783 GLsizeiptrARB size, const GLvoid * data)
784 {
785 GET_CURRENT_CONTEXT(ctx);
786 struct gl_buffer_object *bufObj;
787 ASSERT_OUTSIDE_BEGIN_END(ctx);
788
789 bufObj = buffer_object_subdata_range_good( ctx, target, offset, size,
790 "BufferSubDataARB" );
791 if (!bufObj) {
792 /* error already recorded */
793 return;
794 }
795
796 ASSERT(ctx->Driver.BufferSubData);
797 ctx->Driver.BufferSubData( ctx, target, offset, size, data, bufObj );
798 }
799
800
801 void GLAPIENTRY
802 _mesa_GetBufferSubDataARB(GLenum target, GLintptrARB offset,
803 GLsizeiptrARB size, void * data)
804 {
805 GET_CURRENT_CONTEXT(ctx);
806 struct gl_buffer_object *bufObj;
807 ASSERT_OUTSIDE_BEGIN_END(ctx);
808
809 bufObj = buffer_object_subdata_range_good( ctx, target, offset, size,
810 "GetBufferSubDataARB" );
811 if (!bufObj) {
812 /* error already recorded */
813 return;
814 }
815
816 ASSERT(ctx->Driver.GetBufferSubData);
817 ctx->Driver.GetBufferSubData( ctx, target, offset, size, data, bufObj );
818 }
819
820
821 void * GLAPIENTRY
822 _mesa_MapBufferARB(GLenum target, GLenum access)
823 {
824 GET_CURRENT_CONTEXT(ctx);
825 struct gl_buffer_object * bufObj;
826 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, NULL);
827
828 switch (access) {
829 case GL_READ_ONLY_ARB:
830 case GL_WRITE_ONLY_ARB:
831 case GL_READ_WRITE_ARB:
832 /* OK */
833 break;
834 default:
835 _mesa_error(ctx, GL_INVALID_ENUM, "glMapBufferARB(access)");
836 return NULL;
837 }
838
839 bufObj = buffer_object_get_target( ctx, target, "MapBufferARB" );
840 if (!bufObj || bufObj->Name == 0) {
841 _mesa_error(ctx, GL_INVALID_OPERATION, "glMapBufferARB" );
842 return NULL;
843 }
844
845 if (bufObj->Pointer) {
846 _mesa_error(ctx, GL_INVALID_OPERATION, "glMapBufferARB(already mapped)");
847 return NULL;
848 }
849
850 ASSERT(ctx->Driver.MapBuffer);
851 bufObj->Pointer = ctx->Driver.MapBuffer( ctx, target, access, bufObj );
852 if (!bufObj->Pointer) {
853 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glMapBufferARB(access)");
854 }
855
856 bufObj->Access = access;
857
858 return bufObj->Pointer;
859 }
860
861
862 GLboolean GLAPIENTRY
863 _mesa_UnmapBufferARB(GLenum target)
864 {
865 GET_CURRENT_CONTEXT(ctx);
866 struct gl_buffer_object *bufObj;
867 GLboolean status = GL_TRUE;
868 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
869
870 bufObj = buffer_object_get_target( ctx, target, "UnmapBufferARB" );
871 if (!bufObj || bufObj->Name == 0) {
872 _mesa_error(ctx, GL_INVALID_OPERATION, "glUnmapBufferARB" );
873 return GL_FALSE;
874 }
875
876 if (!bufObj->Pointer) {
877 _mesa_error(ctx, GL_INVALID_OPERATION, "glUnmapBufferARB");
878 return GL_FALSE;
879 }
880
881 if (ctx->Driver.UnmapBuffer) {
882 status = ctx->Driver.UnmapBuffer( ctx, target, bufObj );
883 }
884
885 bufObj->Access = GL_READ_WRITE_ARB; /* initial value, OK? */
886 bufObj->Pointer = NULL;
887
888 return status;
889 }
890
891
892 void GLAPIENTRY
893 _mesa_GetBufferParameterivARB(GLenum target, GLenum pname, GLint *params)
894 {
895 GET_CURRENT_CONTEXT(ctx);
896 struct gl_buffer_object *bufObj;
897 ASSERT_OUTSIDE_BEGIN_END(ctx);
898
899 bufObj = buffer_object_get_target( ctx, target, "GetBufferParameterivARB" );
900 if (!bufObj || bufObj->Name == 0) {
901 _mesa_error(ctx, GL_INVALID_OPERATION, "GetBufferParameterivARB" );
902 return;
903 }
904
905 switch (pname) {
906 case GL_BUFFER_SIZE_ARB:
907 *params = (GLint) bufObj->Size;
908 break;
909 case GL_BUFFER_USAGE_ARB:
910 *params = bufObj->Usage;
911 break;
912 case GL_BUFFER_ACCESS_ARB:
913 *params = bufObj->Access;
914 break;
915 case GL_BUFFER_MAPPED_ARB:
916 *params = (bufObj->Pointer != NULL);
917 break;
918 default:
919 _mesa_error(ctx, GL_INVALID_ENUM, "glGetBufferParameterivARB(pname)");
920 return;
921 }
922 }
923
924
925 void GLAPIENTRY
926 _mesa_GetBufferPointervARB(GLenum target, GLenum pname, GLvoid **params)
927 {
928 GET_CURRENT_CONTEXT(ctx);
929 struct gl_buffer_object * bufObj;
930 ASSERT_OUTSIDE_BEGIN_END(ctx);
931
932 if (pname != GL_BUFFER_MAP_POINTER_ARB) {
933 _mesa_error(ctx, GL_INVALID_ENUM, "glGetBufferPointervARB(pname)");
934 return;
935 }
936
937 bufObj = buffer_object_get_target( ctx, target, "GetBufferPointervARB" );
938 if (!bufObj || bufObj->Name == 0) {
939 _mesa_error(ctx, GL_INVALID_OPERATION, "glGetBufferPointervARB" );
940 return;
941 }
942
943 *params = bufObj->Pointer;
944 }