03aec367c438942073a4a8b62ea595061c507f0d
[mesa.git] / src / mesa / main / bufferobj.c
1 /*
2 * Mesa 3-D graphics library
3 * Version: 6.3
4 *
5 * Copyright (C) 1999-2004 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 str Name of caller for logging 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 * str )
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)", str);
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 str Name of caller for logging 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 * str )
102 {
103 struct gl_buffer_object *bufObj;
104
105 if (size < 0) {
106 _mesa_error(ctx, GL_INVALID_VALUE, "%s(size < 0)", str);
107 return NULL;
108 }
109
110 if (offset < 0) {
111 _mesa_error(ctx, GL_INVALID_VALUE, "%s(offset < 0)", str);
112 return NULL;
113 }
114
115 bufObj = buffer_object_get_target( ctx, target, str );
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)", str);
123 return NULL;
124 }
125
126 if (bufObj->Pointer) {
127 /* Buffer is currently mapped */
128 _mesa_error(ctx, GL_INVALID_OPERATION, "%s", str);
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 newBufObj = (*ctx->Driver.NewBufferObject)(ctx, buffer, target);
503 if (!newBufObj) {
504 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glBindBufferARB");
505 return;
506 }
507 _mesa_save_buffer_object(ctx, newBufObj);
508 }
509 newBufObj->RefCount++;
510 }
511
512 switch (target) {
513 case GL_ARRAY_BUFFER_ARB:
514 ctx->Array.ArrayBufferObj = newBufObj;
515 break;
516 case GL_ELEMENT_ARRAY_BUFFER_ARB:
517 ctx->Array.ElementArrayBufferObj = newBufObj;
518 break;
519 case GL_PIXEL_PACK_BUFFER_EXT:
520 ctx->Pack.BufferObj = newBufObj;
521 break;
522 case GL_PIXEL_UNPACK_BUFFER_EXT:
523 ctx->Unpack.BufferObj = newBufObj;
524 break;
525 default:
526 _mesa_problem(ctx, "Bad target in _mesa_BindBufferARB");
527 return;
528 }
529
530 /* Pass BindBuffer call to device driver */
531 if (ctx->Driver.BindBuffer && newBufObj)
532 (*ctx->Driver.BindBuffer)( ctx, target, newBufObj );
533
534 if (oldBufObj) {
535 oldBufObj->RefCount--;
536 assert(oldBufObj->RefCount >= 0);
537 if (oldBufObj->RefCount == 0) {
538 assert(oldBufObj->Name != 0);
539 ASSERT(ctx->Driver.DeleteBuffer);
540 ctx->Driver.DeleteBuffer( ctx, oldBufObj );
541 }
542 }
543 }
544
545
546 /**
547 * Delete a set of buffer objects.
548 *
549 * \param n Number of buffer objects to delete.
550 * \param ids Array of \c n buffer object IDs.
551 */
552 void GLAPIENTRY
553 _mesa_DeleteBuffersARB(GLsizei n, const GLuint *ids)
554 {
555 GET_CURRENT_CONTEXT(ctx);
556 GLsizei i;
557 ASSERT_OUTSIDE_BEGIN_END(ctx);
558
559 if (n < 0) {
560 _mesa_error(ctx, GL_INVALID_VALUE, "glDeleteBuffersARB(n)");
561 return;
562 }
563
564 _glthread_LOCK_MUTEX(ctx->Shared->Mutex);
565
566 for (i = 0; i < n; i++) {
567 if (ids[i] != 0) {
568 struct gl_buffer_object *bufObj = (struct gl_buffer_object *)
569 _mesa_HashLookup(ctx->Shared->BufferObjects, ids[i]);
570 if (bufObj) {
571 /* unbind any vertex pointers bound to this buffer */
572 GLuint j;
573
574 ASSERT(bufObj->Name == ids[i]);
575
576 if (ctx->Array.Vertex.BufferObj == bufObj) {
577 bufObj->RefCount--;
578 ctx->Array.Vertex.BufferObj = ctx->Array.NullBufferObj;
579 ctx->Array.NullBufferObj->RefCount++;
580 }
581 if (ctx->Array.Normal.BufferObj == bufObj) {
582 bufObj->RefCount--;
583 ctx->Array.Normal.BufferObj = ctx->Array.NullBufferObj;
584 ctx->Array.NullBufferObj->RefCount++;
585 }
586 if (ctx->Array.Color.BufferObj == bufObj) {
587 bufObj->RefCount--;
588 ctx->Array.Color.BufferObj = ctx->Array.NullBufferObj;
589 ctx->Array.NullBufferObj->RefCount++;
590 }
591 if (ctx->Array.SecondaryColor.BufferObj == bufObj) {
592 bufObj->RefCount--;
593 ctx->Array.SecondaryColor.BufferObj = ctx->Array.NullBufferObj;
594 ctx->Array.NullBufferObj->RefCount++;
595 }
596 if (ctx->Array.FogCoord.BufferObj == bufObj) {
597 bufObj->RefCount--;
598 ctx->Array.FogCoord.BufferObj = ctx->Array.NullBufferObj;
599 ctx->Array.NullBufferObj->RefCount++;
600 }
601 if (ctx->Array.Index.BufferObj == bufObj) {
602 bufObj->RefCount--;
603 ctx->Array.Index.BufferObj = ctx->Array.NullBufferObj;
604 ctx->Array.NullBufferObj->RefCount++;
605 }
606 if (ctx->Array.EdgeFlag.BufferObj == bufObj) {
607 bufObj->RefCount--;
608 ctx->Array.EdgeFlag.BufferObj = ctx->Array.NullBufferObj;
609 ctx->Array.NullBufferObj->RefCount++;
610 }
611 for (j = 0; j < MAX_TEXTURE_UNITS; j++) {
612 if (ctx->Array.TexCoord[j].BufferObj == bufObj) {
613 bufObj->RefCount--;
614 ctx->Array.TexCoord[j].BufferObj = ctx->Array.NullBufferObj;
615 ctx->Array.NullBufferObj->RefCount++;
616 }
617 }
618 for (j = 0; j < VERT_ATTRIB_MAX; j++) {
619 if (ctx->Array.VertexAttrib[j].BufferObj == bufObj) {
620 bufObj->RefCount--;
621 ctx->Array.VertexAttrib[j].BufferObj = ctx->Array.NullBufferObj;
622 ctx->Array.NullBufferObj->RefCount++;
623 }
624 }
625
626 if (ctx->Array.ArrayBufferObj == bufObj) {
627 _mesa_BindBufferARB( GL_ARRAY_BUFFER_ARB, 0 );
628 }
629 if (ctx->Array.ElementArrayBufferObj == bufObj) {
630 _mesa_BindBufferARB( GL_ELEMENT_ARRAY_BUFFER_ARB, 0 );
631 }
632
633 if (ctx->Pack.BufferObj == bufObj) {
634 _mesa_BindBufferARB( GL_PIXEL_PACK_BUFFER_EXT, 0 );
635 }
636 if (ctx->Unpack.BufferObj == bufObj) {
637 _mesa_BindBufferARB( GL_PIXEL_UNPACK_BUFFER_EXT, 0 );
638 }
639
640 /* The ID is immediately freed for re-use */
641 _mesa_remove_buffer_object(ctx, bufObj);
642 bufObj->RefCount--;
643 if (bufObj->RefCount <= 0) {
644 ASSERT(ctx->Array.ArrayBufferObj != bufObj);
645 ASSERT(ctx->Array.ElementArrayBufferObj != bufObj);
646 ASSERT(ctx->Array.Vertex.BufferObj != bufObj);
647 ASSERT(ctx->Driver.DeleteBuffer);
648 ctx->Driver.DeleteBuffer(ctx, bufObj);
649 }
650 }
651 }
652 }
653
654 _glthread_UNLOCK_MUTEX(ctx->Shared->Mutex);
655 }
656
657
658 /**
659 * Generate a set of unique buffer object IDs and store them in \c buffer.
660 *
661 * \param n Number of IDs to generate.
662 * \param buffer Array of \c n locations to store the IDs.
663 */
664 void GLAPIENTRY
665 _mesa_GenBuffersARB(GLsizei n, GLuint *buffer)
666 {
667 GET_CURRENT_CONTEXT(ctx);
668 GLuint first;
669 GLint i;
670 ASSERT_OUTSIDE_BEGIN_END(ctx);
671
672 if (n < 0) {
673 _mesa_error(ctx, GL_INVALID_VALUE, "glGenBuffersARB");
674 return;
675 }
676
677 if (!buffer) {
678 return;
679 }
680
681 /*
682 * This must be atomic (generation and allocation of buffer object IDs)
683 */
684 _glthread_LOCK_MUTEX(ctx->Shared->Mutex);
685
686 first = _mesa_HashFindFreeKeyBlock(ctx->Shared->BufferObjects, n);
687
688 /* Allocate new, empty buffer objects and return identifiers */
689 for (i = 0; i < n; i++) {
690 struct gl_buffer_object *bufObj;
691 GLuint name = first + i;
692 GLenum target = 0;
693 bufObj = (*ctx->Driver.NewBufferObject)( ctx, name, target );
694 if (!bufObj) {
695 _glthread_UNLOCK_MUTEX(ctx->Shared->Mutex);
696 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glGenBuffersARB");
697 return;
698 }
699 _mesa_save_buffer_object(ctx, bufObj);
700 buffer[i] = first + i;
701 }
702
703 _glthread_UNLOCK_MUTEX(ctx->Shared->Mutex);
704 }
705
706
707 /**
708 * Determine if ID is the name of a buffer object.
709 *
710 * \param id ID of the potential buffer object.
711 * \return \c GL_TRUE if \c id is the name of a buffer object,
712 * \c GL_FALSE otherwise.
713 */
714 GLboolean GLAPIENTRY
715 _mesa_IsBufferARB(GLuint id)
716 {
717 struct gl_buffer_object * bufObj;
718 GET_CURRENT_CONTEXT(ctx);
719 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
720
721 if (id == 0)
722 return GL_FALSE;
723
724 _glthread_LOCK_MUTEX(ctx->Shared->Mutex);
725 bufObj = (struct gl_buffer_object *) _mesa_HashLookup(ctx->Shared->BufferObjects, id);
726 _glthread_UNLOCK_MUTEX(ctx->Shared->Mutex);
727
728 return bufObj ? GL_TRUE : GL_FALSE;
729 }
730
731
732 void GLAPIENTRY
733 _mesa_BufferDataARB(GLenum target, GLsizeiptrARB size,
734 const GLvoid * data, GLenum usage)
735 {
736 GET_CURRENT_CONTEXT(ctx);
737 struct gl_buffer_object *bufObj;
738 ASSERT_OUTSIDE_BEGIN_END(ctx);
739
740 if (size < 0) {
741 _mesa_error(ctx, GL_INVALID_VALUE, "glBufferDataARB(size < 0)");
742 return;
743 }
744
745 switch (usage) {
746 case GL_STREAM_DRAW_ARB:
747 case GL_STREAM_READ_ARB:
748 case GL_STREAM_COPY_ARB:
749 case GL_STATIC_DRAW_ARB:
750 case GL_STATIC_READ_ARB:
751 case GL_STATIC_COPY_ARB:
752 case GL_DYNAMIC_DRAW_ARB:
753 case GL_DYNAMIC_READ_ARB:
754 case GL_DYNAMIC_COPY_ARB:
755 /* OK */
756 break;
757 default:
758 _mesa_error(ctx, GL_INVALID_ENUM, "glBufferDataARB(usage)");
759 return;
760 }
761
762 bufObj = buffer_object_get_target( ctx, target, "BufferDataARB" );
763 if (!bufObj || bufObj->Name ==0) {
764 _mesa_error(ctx, GL_INVALID_OPERATION, "glBufferDataARB" );
765 return;
766 }
767
768 if (bufObj->Pointer) {
769 _mesa_error(ctx, GL_INVALID_OPERATION, "glBufferDataARB(buffer is mapped)" );
770 return;
771 }
772
773 ASSERT(ctx->Driver.BufferData);
774
775 /* Give the buffer object to the driver! <data> may be null! */
776 (*ctx->Driver.BufferData)( ctx, target, size, data, usage, bufObj );
777 }
778
779
780 void GLAPIENTRY
781 _mesa_BufferSubDataARB(GLenum target, GLintptrARB offset,
782 GLsizeiptrARB size, const GLvoid * data)
783 {
784 GET_CURRENT_CONTEXT(ctx);
785 struct gl_buffer_object *bufObj;
786 ASSERT_OUTSIDE_BEGIN_END(ctx);
787
788 bufObj = buffer_object_subdata_range_good( ctx, target, offset, size,
789 "BufferSubDataARB" );
790 if (!bufObj) {
791 /* error already recorded */
792 return;
793 }
794
795 ASSERT(ctx->Driver.BufferSubData);
796 (*ctx->Driver.BufferSubData)( ctx, target, offset, size, data, bufObj );
797 }
798
799
800 void GLAPIENTRY
801 _mesa_GetBufferSubDataARB(GLenum target, GLintptrARB offset,
802 GLsizeiptrARB size, void * data)
803 {
804 GET_CURRENT_CONTEXT(ctx);
805 struct gl_buffer_object *bufObj;
806 ASSERT_OUTSIDE_BEGIN_END(ctx);
807
808 bufObj = buffer_object_subdata_range_good( ctx, target, offset, size,
809 "GetBufferSubDataARB" );
810 if (!bufObj) {
811 /* error already recorded */
812 return;
813 }
814
815 ASSERT(ctx->Driver.GetBufferSubData);
816 (*ctx->Driver.GetBufferSubData)( ctx, target, offset, size, data, bufObj );
817 }
818
819
820 void * GLAPIENTRY
821 _mesa_MapBufferARB(GLenum target, GLenum access)
822 {
823 GET_CURRENT_CONTEXT(ctx);
824 struct gl_buffer_object * bufObj;
825 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, NULL);
826
827 switch (access) {
828 case GL_READ_ONLY_ARB:
829 case GL_WRITE_ONLY_ARB:
830 case GL_READ_WRITE_ARB:
831 /* OK */
832 break;
833 default:
834 _mesa_error(ctx, GL_INVALID_ENUM, "glMapBufferARB(access)");
835 return NULL;
836 }
837
838 bufObj = buffer_object_get_target( ctx, target, "MapBufferARB" );
839 if (!bufObj || bufObj->Name == 0) {
840 _mesa_error(ctx, GL_INVALID_OPERATION, "glMapBufferARB" );
841 return NULL;
842 }
843
844 if (bufObj->Pointer) {
845 _mesa_error(ctx, GL_INVALID_OPERATION, "glMapBufferARB(already mapped)");
846 return NULL;
847 }
848
849 ASSERT(ctx->Driver.MapBuffer);
850 bufObj->Pointer = (*ctx->Driver.MapBuffer)( ctx, target, access, bufObj );
851 if (!bufObj->Pointer) {
852 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glMapBufferARB(access)");
853 }
854
855 bufObj->Access = access;
856
857 return bufObj->Pointer;
858 }
859
860
861 GLboolean GLAPIENTRY
862 _mesa_UnmapBufferARB(GLenum target)
863 {
864 GET_CURRENT_CONTEXT(ctx);
865 struct gl_buffer_object *bufObj;
866 GLboolean status = GL_TRUE;
867 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
868
869 bufObj = buffer_object_get_target( ctx, target, "UnmapBufferARB" );
870 if (!bufObj || bufObj->Name == 0) {
871 _mesa_error(ctx, GL_INVALID_OPERATION, "glUnmapBufferARB" );
872 return GL_FALSE;
873 }
874
875 if (!bufObj->Pointer) {
876 _mesa_error(ctx, GL_INVALID_OPERATION, "glUnmapBufferARB");
877 return GL_FALSE;
878 }
879
880 if (ctx->Driver.UnmapBuffer) {
881 status = (*ctx->Driver.UnmapBuffer)( ctx, target, bufObj );
882 }
883
884 bufObj->Access = GL_READ_WRITE_ARB; /* initial value, OK? */
885 bufObj->Pointer = NULL;
886
887 return status;
888 }
889
890
891 void GLAPIENTRY
892 _mesa_GetBufferParameterivARB(GLenum target, GLenum pname, GLint *params)
893 {
894 GET_CURRENT_CONTEXT(ctx);
895 struct gl_buffer_object *bufObj;
896 ASSERT_OUTSIDE_BEGIN_END(ctx);
897
898 bufObj = buffer_object_get_target( ctx, target, "GetBufferParameterivARB" );
899 if (!bufObj || bufObj->Name == 0) {
900 _mesa_error(ctx, GL_INVALID_OPERATION, "GetBufferParameterivARB" );
901 return;
902 }
903
904 switch (pname) {
905 case GL_BUFFER_SIZE_ARB:
906 *params = (GLint) bufObj->Size;
907 break;
908 case GL_BUFFER_USAGE_ARB:
909 *params = bufObj->Usage;
910 break;
911 case GL_BUFFER_ACCESS_ARB:
912 *params = bufObj->Access;
913 break;
914 case GL_BUFFER_MAPPED_ARB:
915 *params = (bufObj->Pointer != NULL);
916 break;
917 default:
918 _mesa_error(ctx, GL_INVALID_ENUM, "glGetBufferParameterivARB(pname)");
919 return;
920 }
921 }
922
923
924 void GLAPIENTRY
925 _mesa_GetBufferPointervARB(GLenum target, GLenum pname, GLvoid **params)
926 {
927 GET_CURRENT_CONTEXT(ctx);
928 struct gl_buffer_object * bufObj;
929 ASSERT_OUTSIDE_BEGIN_END(ctx);
930
931 if (pname != GL_BUFFER_MAP_POINTER_ARB) {
932 _mesa_error(ctx, GL_INVALID_ENUM, "glGetBufferPointervARB(pname)");
933 return;
934 }
935
936 bufObj = buffer_object_get_target( ctx, target, "GetBufferPointervARB" );
937 if (!bufObj || bufObj->Name == 0) {
938 _mesa_error(ctx, GL_INVALID_OPERATION, "glGetBufferPointervARB" );
939 return;
940 }
941
942 *params = bufObj->Pointer;
943 }