2006-06-12 16:26:29 +00:00
|
|
|
/*
|
|
|
|
* Mesa 3-D graphics library
|
2009-05-21 09:56:41 -06:00
|
|
|
* Version: 7.6
|
2006-06-12 16:26:29 +00:00
|
|
|
*
|
2008-09-04 14:58:02 -06:00
|
|
|
* Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
|
2006-06-12 16:26:29 +00:00
|
|
|
* (C) Copyright IBM Corporation 2006
|
2009-05-21 09:56:41 -06:00
|
|
|
* Copyright (C) 2009 VMware, Inc. All Rights Reserved.
|
2006-06-12 16:26:29 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included
|
|
|
|
* in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* BRIAN PAUL OR IBM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
|
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \file arrayobj.c
|
|
|
|
* Functions for the GL_APPLE_vertex_array_object extension.
|
|
|
|
*
|
|
|
|
* \todo
|
|
|
|
* The code in this file borrows a lot from bufferobj.c. There's a certain
|
|
|
|
* amount of cruft left over from that origin that may be unnecessary.
|
|
|
|
*
|
|
|
|
* \author Ian Romanick <idr@us.ibm.com>
|
|
|
|
* \author Brian Paul
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "glheader.h"
|
|
|
|
#include "hash.h"
|
2011-04-07 12:07:32 +01:00
|
|
|
#include "image.h"
|
2006-06-12 16:26:29 +00:00
|
|
|
#include "imports.h"
|
|
|
|
#include "context.h"
|
2011-01-07 00:08:24 -08:00
|
|
|
#include "mfeatures.h"
|
2006-06-12 16:26:29 +00:00
|
|
|
#if FEATURE_ARB_vertex_buffer_object
|
|
|
|
#include "bufferobj.h"
|
|
|
|
#endif
|
|
|
|
#include "arrayobj.h"
|
2009-05-21 09:56:41 -06:00
|
|
|
#include "macros.h"
|
2011-01-05 23:11:54 -08:00
|
|
|
#include "mtypes.h"
|
2011-04-06 14:16:57 -06:00
|
|
|
#include "varray.h"
|
2010-02-24 12:01:14 +08:00
|
|
|
#include "main/dispatch.h"
|
2006-06-12 16:26:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Look up the array object for the given ID.
|
|
|
|
*
|
|
|
|
* \returns
|
|
|
|
* Either a pointer to the array object with the specified ID or \c NULL for
|
|
|
|
* a non-existent ID. The spec defines ID 0 as being technically
|
|
|
|
* non-existent.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static INLINE struct gl_array_object *
|
2010-10-12 12:26:10 -04:00
|
|
|
lookup_arrayobj(struct gl_context *ctx, GLuint id)
|
2006-06-12 16:26:29 +00:00
|
|
|
{
|
2009-06-19 17:58:47 -06:00
|
|
|
if (id == 0)
|
|
|
|
return NULL;
|
|
|
|
else
|
|
|
|
return (struct gl_array_object *)
|
|
|
|
_mesa_HashLookup(ctx->Array.Objects, id);
|
2006-06-12 16:26:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-07 14:26:17 -06:00
|
|
|
/**
|
|
|
|
* For all the vertex arrays in the array object, unbind any pointers
|
|
|
|
* to any buffer objects (VBOs).
|
|
|
|
* This is done just prior to array object destruction.
|
|
|
|
*/
|
|
|
|
static void
|
2010-10-12 12:26:10 -04:00
|
|
|
unbind_array_object_vbos(struct gl_context *ctx, struct gl_array_object *obj)
|
2009-05-07 14:26:17 -06:00
|
|
|
{
|
|
|
|
GLuint i;
|
|
|
|
|
|
|
|
_mesa_reference_buffer_object(ctx, &obj->Vertex.BufferObj, NULL);
|
2009-05-21 10:15:18 -06:00
|
|
|
_mesa_reference_buffer_object(ctx, &obj->Weight.BufferObj, NULL);
|
2009-05-07 14:26:17 -06:00
|
|
|
_mesa_reference_buffer_object(ctx, &obj->Normal.BufferObj, NULL);
|
|
|
|
_mesa_reference_buffer_object(ctx, &obj->Color.BufferObj, NULL);
|
|
|
|
_mesa_reference_buffer_object(ctx, &obj->SecondaryColor.BufferObj, NULL);
|
|
|
|
_mesa_reference_buffer_object(ctx, &obj->FogCoord.BufferObj, NULL);
|
|
|
|
_mesa_reference_buffer_object(ctx, &obj->Index.BufferObj, NULL);
|
|
|
|
_mesa_reference_buffer_object(ctx, &obj->EdgeFlag.BufferObj, NULL);
|
|
|
|
|
2009-05-22 07:51:13 -06:00
|
|
|
for (i = 0; i < Elements(obj->TexCoord); i++)
|
2009-05-07 14:26:17 -06:00
|
|
|
_mesa_reference_buffer_object(ctx, &obj->TexCoord[i].BufferObj, NULL);
|
|
|
|
|
2009-05-22 07:51:13 -06:00
|
|
|
for (i = 0; i < Elements(obj->VertexAttrib); i++)
|
2009-05-07 14:26:17 -06:00
|
|
|
_mesa_reference_buffer_object(ctx, &obj->VertexAttrib[i].BufferObj,NULL);
|
2010-02-09 14:25:41 +01:00
|
|
|
|
|
|
|
#if FEATURE_point_size_array
|
|
|
|
_mesa_reference_buffer_object(ctx, &obj->PointSize.BufferObj, NULL);
|
|
|
|
#endif
|
2009-05-07 14:26:17 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-12 16:26:29 +00:00
|
|
|
/**
|
2006-06-15 15:36:06 +00:00
|
|
|
* Allocate and initialize a new vertex array object.
|
2006-06-12 16:26:29 +00:00
|
|
|
*
|
|
|
|
* This function is intended to be called via
|
|
|
|
* \c dd_function_table::NewArrayObject.
|
|
|
|
*/
|
|
|
|
struct gl_array_object *
|
2010-10-12 12:26:10 -04:00
|
|
|
_mesa_new_array_object( struct gl_context *ctx, GLuint name )
|
2006-06-12 16:26:29 +00:00
|
|
|
{
|
2008-09-04 15:25:32 -06:00
|
|
|
struct gl_array_object *obj = CALLOC_STRUCT(gl_array_object);
|
2006-06-15 15:36:06 +00:00
|
|
|
if (obj)
|
|
|
|
_mesa_initialize_array_object(ctx, obj, name);
|
2006-06-12 16:26:29 +00:00
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete an array object.
|
|
|
|
*
|
|
|
|
* This function is intended to be called via
|
|
|
|
* \c dd_function_table::DeleteArrayObject.
|
|
|
|
*/
|
|
|
|
void
|
2010-10-12 12:26:10 -04:00
|
|
|
_mesa_delete_array_object( struct gl_context *ctx, struct gl_array_object *obj )
|
2006-06-12 16:26:29 +00:00
|
|
|
{
|
|
|
|
(void) ctx;
|
2009-05-07 14:26:17 -06:00
|
|
|
unbind_array_object_vbos(ctx, obj);
|
2009-05-07 13:52:26 -06:00
|
|
|
_glthread_DESTROY_MUTEX(obj->Mutex);
|
2010-02-19 11:58:49 -05:00
|
|
|
free(obj);
|
2006-06-12 16:26:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-07 13:52:26 -06:00
|
|
|
/**
|
|
|
|
* Set ptr to arrayObj w/ reference counting.
|
|
|
|
*/
|
|
|
|
void
|
2010-10-12 12:26:10 -04:00
|
|
|
_mesa_reference_array_object(struct gl_context *ctx,
|
2009-05-07 13:52:26 -06:00
|
|
|
struct gl_array_object **ptr,
|
|
|
|
struct gl_array_object *arrayObj)
|
|
|
|
{
|
|
|
|
if (*ptr == arrayObj)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (*ptr) {
|
|
|
|
/* Unreference the old array object */
|
|
|
|
GLboolean deleteFlag = GL_FALSE;
|
|
|
|
struct gl_array_object *oldObj = *ptr;
|
|
|
|
|
|
|
|
_glthread_LOCK_MUTEX(oldObj->Mutex);
|
|
|
|
ASSERT(oldObj->RefCount > 0);
|
|
|
|
oldObj->RefCount--;
|
|
|
|
#if 0
|
|
|
|
printf("ArrayObj %p %d DECR to %d\n",
|
|
|
|
(void *) oldObj, oldObj->Name, oldObj->RefCount);
|
|
|
|
#endif
|
|
|
|
deleteFlag = (oldObj->RefCount == 0);
|
|
|
|
_glthread_UNLOCK_MUTEX(oldObj->Mutex);
|
|
|
|
|
|
|
|
if (deleteFlag) {
|
|
|
|
ASSERT(ctx->Driver.DeleteArrayObject);
|
|
|
|
ctx->Driver.DeleteArrayObject(ctx, oldObj);
|
|
|
|
}
|
|
|
|
|
|
|
|
*ptr = NULL;
|
|
|
|
}
|
|
|
|
ASSERT(!*ptr);
|
|
|
|
|
|
|
|
if (arrayObj) {
|
|
|
|
/* reference new array object */
|
|
|
|
_glthread_LOCK_MUTEX(arrayObj->Mutex);
|
|
|
|
if (arrayObj->RefCount == 0) {
|
|
|
|
/* this array's being deleted (look just above) */
|
|
|
|
/* Not sure this can every really happen. Warn if it does. */
|
|
|
|
_mesa_problem(NULL, "referencing deleted array object");
|
|
|
|
*ptr = NULL;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
arrayObj->RefCount++;
|
|
|
|
#if 0
|
|
|
|
printf("ArrayObj %p %d INCR to %d\n",
|
|
|
|
(void *) arrayObj, arrayObj->Name, arrayObj->RefCount);
|
|
|
|
#endif
|
|
|
|
*ptr = arrayObj;
|
|
|
|
}
|
|
|
|
_glthread_UNLOCK_MUTEX(arrayObj->Mutex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-01-23 11:25:13 -07:00
|
|
|
static void
|
2010-10-12 12:26:10 -04:00
|
|
|
init_array(struct gl_context *ctx,
|
2009-01-23 11:25:13 -07:00
|
|
|
struct gl_client_array *array, GLint size, GLint type)
|
|
|
|
{
|
|
|
|
array->Size = size;
|
|
|
|
array->Type = type;
|
|
|
|
array->Format = GL_RGBA; /* only significant for GL_EXT_vertex_array_bgra */
|
|
|
|
array->Stride = 0;
|
|
|
|
array->StrideB = 0;
|
|
|
|
array->Ptr = NULL;
|
|
|
|
array->Enabled = GL_FALSE;
|
|
|
|
array->Normalized = GL_FALSE;
|
2011-04-07 12:07:32 +01:00
|
|
|
array->_ElementSize = size * _mesa_sizeof_type(type);
|
2009-01-23 11:25:13 -07:00
|
|
|
#if FEATURE_ARB_vertex_buffer_object
|
|
|
|
/* Vertex array buffers */
|
2009-05-07 13:30:39 -06:00
|
|
|
_mesa_reference_buffer_object(ctx, &array->BufferObj,
|
|
|
|
ctx->Shared->NullBufferObj);
|
2009-01-23 11:25:13 -07:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize a gl_array_object's arrays.
|
|
|
|
*/
|
2006-06-12 16:26:29 +00:00
|
|
|
void
|
2010-10-12 12:26:10 -04:00
|
|
|
_mesa_initialize_array_object( struct gl_context *ctx,
|
2006-06-12 16:26:29 +00:00
|
|
|
struct gl_array_object *obj,
|
|
|
|
GLuint name )
|
|
|
|
{
|
|
|
|
GLuint i;
|
|
|
|
|
|
|
|
obj->Name = name;
|
|
|
|
|
2009-05-07 13:52:26 -06:00
|
|
|
_glthread_INIT_MUTEX(obj->Mutex);
|
|
|
|
obj->RefCount = 1;
|
|
|
|
|
2009-01-23 11:25:13 -07:00
|
|
|
/* Init the individual arrays */
|
|
|
|
init_array(ctx, &obj->Vertex, 4, GL_FLOAT);
|
2009-05-21 10:15:18 -06:00
|
|
|
init_array(ctx, &obj->Weight, 1, GL_FLOAT);
|
2009-01-23 11:25:13 -07:00
|
|
|
init_array(ctx, &obj->Normal, 3, GL_FLOAT);
|
|
|
|
init_array(ctx, &obj->Color, 4, GL_FLOAT);
|
2011-01-31 13:46:16 -08:00
|
|
|
init_array(ctx, &obj->SecondaryColor, 3, GL_FLOAT);
|
2009-01-23 11:25:13 -07:00
|
|
|
init_array(ctx, &obj->FogCoord, 1, GL_FLOAT);
|
|
|
|
init_array(ctx, &obj->Index, 1, GL_FLOAT);
|
2009-05-22 07:51:13 -06:00
|
|
|
for (i = 0; i < Elements(obj->TexCoord); i++) {
|
2009-01-23 11:25:13 -07:00
|
|
|
init_array(ctx, &obj->TexCoord[i], 4, GL_FLOAT);
|
2006-06-12 16:26:29 +00:00
|
|
|
}
|
2009-01-23 11:25:13 -07:00
|
|
|
init_array(ctx, &obj->EdgeFlag, 1, GL_BOOL);
|
2009-05-22 07:51:13 -06:00
|
|
|
for (i = 0; i < Elements(obj->VertexAttrib); i++) {
|
2009-01-23 11:25:13 -07:00
|
|
|
init_array(ctx, &obj->VertexAttrib[i], 4, GL_FLOAT);
|
2006-06-12 16:26:29 +00:00
|
|
|
}
|
|
|
|
|
2008-06-25 08:45:14 -06:00
|
|
|
#if FEATURE_point_size_array
|
2009-01-23 11:25:13 -07:00
|
|
|
init_array(ctx, &obj->PointSize, 1, GL_FLOAT);
|
2006-06-12 16:26:29 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add the given array object to the array object pool.
|
|
|
|
*/
|
2009-05-07 14:33:18 -06:00
|
|
|
static void
|
2010-10-12 12:26:10 -04:00
|
|
|
save_array_object( struct gl_context *ctx, struct gl_array_object *obj )
|
2006-06-12 16:26:29 +00:00
|
|
|
{
|
|
|
|
if (obj->Name > 0) {
|
|
|
|
/* insert into hash table */
|
2009-06-19 17:58:47 -06:00
|
|
|
_mesa_HashInsert(ctx->Array.Objects, obj->Name, obj);
|
2006-06-12 16:26:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove the given array object from the array object pool.
|
|
|
|
* Do not deallocate the array object though.
|
|
|
|
*/
|
2009-05-07 14:33:18 -06:00
|
|
|
static void
|
2010-10-12 12:26:10 -04:00
|
|
|
remove_array_object( struct gl_context *ctx, struct gl_array_object *obj )
|
2006-06-12 16:26:29 +00:00
|
|
|
{
|
|
|
|
if (obj->Name > 0) {
|
|
|
|
/* remove from hash table */
|
2009-06-19 17:58:47 -06:00
|
|
|
_mesa_HashRemove(ctx->Array.Objects, obj->Name);
|
2006-06-12 16:26:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-21 09:56:41 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper for update_arrays().
|
|
|
|
* \return min(current min, array->_MaxElement).
|
|
|
|
*/
|
|
|
|
static GLuint
|
|
|
|
update_min(GLuint min, struct gl_client_array *array)
|
|
|
|
{
|
2011-04-06 14:16:57 -06:00
|
|
|
_mesa_update_array_max_element(array);
|
2009-05-21 09:56:41 -06:00
|
|
|
if (array->Enabled)
|
|
|
|
return MIN2(min, array->_MaxElement);
|
|
|
|
else
|
|
|
|
return min;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Examine vertex arrays to update the gl_array_object::_MaxElement field.
|
|
|
|
*/
|
|
|
|
void
|
2010-10-12 12:26:10 -04:00
|
|
|
_mesa_update_array_object_max_element(struct gl_context *ctx,
|
2009-05-21 09:56:41 -06:00
|
|
|
struct gl_array_object *arrayObj)
|
|
|
|
{
|
|
|
|
GLuint i, min = ~0;
|
|
|
|
|
|
|
|
min = update_min(min, &arrayObj->Vertex);
|
2009-05-21 10:15:18 -06:00
|
|
|
min = update_min(min, &arrayObj->Weight);
|
2009-05-21 09:56:41 -06:00
|
|
|
min = update_min(min, &arrayObj->Normal);
|
|
|
|
min = update_min(min, &arrayObj->Color);
|
|
|
|
min = update_min(min, &arrayObj->SecondaryColor);
|
|
|
|
min = update_min(min, &arrayObj->FogCoord);
|
|
|
|
min = update_min(min, &arrayObj->Index);
|
|
|
|
min = update_min(min, &arrayObj->EdgeFlag);
|
2009-05-21 10:11:13 -06:00
|
|
|
#if FEATURE_point_size_array
|
2009-05-21 09:56:41 -06:00
|
|
|
min = update_min(min, &arrayObj->PointSize);
|
2009-05-21 10:11:13 -06:00
|
|
|
#endif
|
2009-05-21 09:56:41 -06:00
|
|
|
for (i = 0; i < ctx->Const.MaxTextureCoordUnits; i++)
|
|
|
|
min = update_min(min, &arrayObj->TexCoord[i]);
|
2009-05-22 07:51:13 -06:00
|
|
|
for (i = 0; i < Elements(arrayObj->VertexAttrib); i++)
|
2009-05-21 09:56:41 -06:00
|
|
|
min = update_min(min, &arrayObj->VertexAttrib[i]);
|
|
|
|
|
|
|
|
/* _MaxElement is one past the last legal array element */
|
|
|
|
arrayObj->_MaxElement = min;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-12 16:26:29 +00:00
|
|
|
/**********************************************************************/
|
|
|
|
/* API Functions */
|
|
|
|
/**********************************************************************/
|
|
|
|
|
2009-06-19 18:07:49 -06:00
|
|
|
|
2006-06-12 16:26:29 +00:00
|
|
|
/**
|
2009-06-19 18:07:49 -06:00
|
|
|
* Helper for _mesa_BindVertexArray() and _mesa_BindVertexArrayAPPLE().
|
|
|
|
* \param genRequired specifies behavour when id was not generated with
|
|
|
|
* glGenVertexArrays().
|
2006-06-12 16:26:29 +00:00
|
|
|
*/
|
2009-06-19 18:07:49 -06:00
|
|
|
static void
|
2010-10-12 12:26:10 -04:00
|
|
|
bind_vertex_array(struct gl_context *ctx, GLuint id, GLboolean genRequired)
|
2006-06-12 16:26:29 +00:00
|
|
|
{
|
|
|
|
struct gl_array_object * const oldObj = ctx->Array.ArrayObj;
|
|
|
|
struct gl_array_object *newObj = NULL;
|
|
|
|
ASSERT_OUTSIDE_BEGIN_END(ctx);
|
|
|
|
|
|
|
|
ASSERT(oldObj != NULL);
|
|
|
|
|
|
|
|
if ( oldObj->Name == id )
|
|
|
|
return; /* rebinding the same array object- no change */
|
|
|
|
|
|
|
|
/*
|
2009-05-07 14:26:17 -06:00
|
|
|
* Get pointer to new array object (newObj)
|
2006-06-12 16:26:29 +00:00
|
|
|
*/
|
|
|
|
if (id == 0) {
|
|
|
|
/* The spec says there is no array object named 0, but we use
|
|
|
|
* one internally because it simplifies things.
|
|
|
|
*/
|
|
|
|
newObj = ctx->Array.DefaultArrayObj;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* non-default array object */
|
|
|
|
newObj = lookup_arrayobj(ctx, id);
|
|
|
|
if (!newObj) {
|
2009-06-19 18:07:49 -06:00
|
|
|
if (genRequired) {
|
|
|
|
_mesa_error(ctx, GL_INVALID_OPERATION, "glBindVertexArray(id)");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* For APPLE version, generate a new array object now */
|
2006-06-12 16:26:29 +00:00
|
|
|
newObj = (*ctx->Driver.NewArrayObject)(ctx, id);
|
|
|
|
if (!newObj) {
|
|
|
|
_mesa_error(ctx, GL_OUT_OF_MEMORY, "glBindVertexArrayAPPLE");
|
|
|
|
return;
|
|
|
|
}
|
2009-05-07 14:33:18 -06:00
|
|
|
save_array_object(ctx, newObj);
|
2006-06-12 16:26:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx->NewState |= _NEW_ARRAY;
|
|
|
|
ctx->Array.NewState |= _NEW_ARRAY_ALL;
|
2009-05-07 13:52:26 -06:00
|
|
|
_mesa_reference_array_object(ctx, &ctx->Array.ArrayObj, newObj);
|
2006-06-12 16:26:29 +00:00
|
|
|
|
|
|
|
/* Pass BindVertexArray call to device driver */
|
|
|
|
if (ctx->Driver.BindArrayObject && newObj)
|
2009-06-19 18:07:49 -06:00
|
|
|
ctx->Driver.BindArrayObject(ctx, newObj);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ARB version of glBindVertexArray()
|
|
|
|
* This function behaves differently from glBindVertexArrayAPPLE() in
|
|
|
|
* that this function requires all ids to have been previously generated
|
|
|
|
* by glGenVertexArrays[APPLE]().
|
|
|
|
*/
|
|
|
|
void GLAPIENTRY
|
|
|
|
_mesa_BindVertexArray( GLuint id )
|
|
|
|
{
|
|
|
|
GET_CURRENT_CONTEXT(ctx);
|
|
|
|
bind_vertex_array(ctx, id, GL_TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Bind a new array.
|
|
|
|
*
|
|
|
|
* \todo
|
|
|
|
* The binding could be done more efficiently by comparing the non-NULL
|
|
|
|
* pointers in the old and new objects. The only arrays that are "dirty" are
|
|
|
|
* the ones that are non-NULL in either object.
|
|
|
|
*/
|
|
|
|
void GLAPIENTRY
|
|
|
|
_mesa_BindVertexArrayAPPLE( GLuint id )
|
|
|
|
{
|
|
|
|
GET_CURRENT_CONTEXT(ctx);
|
|
|
|
bind_vertex_array(ctx, id, GL_FALSE);
|
2006-06-12 16:26:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete a set of array objects.
|
|
|
|
*
|
|
|
|
* \param n Number of array objects to delete.
|
|
|
|
* \param ids Array of \c n array object IDs.
|
|
|
|
*/
|
|
|
|
void GLAPIENTRY
|
|
|
|
_mesa_DeleteVertexArraysAPPLE(GLsizei n, const GLuint *ids)
|
|
|
|
{
|
|
|
|
GET_CURRENT_CONTEXT(ctx);
|
|
|
|
GLsizei i;
|
|
|
|
ASSERT_OUTSIDE_BEGIN_END(ctx);
|
|
|
|
|
|
|
|
if (n < 0) {
|
|
|
|
_mesa_error(ctx, GL_INVALID_VALUE, "glDeleteVertexArrayAPPLE(n)");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
struct gl_array_object *obj = lookup_arrayobj(ctx, ids[i]);
|
|
|
|
|
|
|
|
if ( obj != NULL ) {
|
|
|
|
ASSERT( obj->Name == ids[i] );
|
|
|
|
|
|
|
|
/* If the array object is currently bound, the spec says "the binding
|
|
|
|
* for that object reverts to zero and the default vertex array
|
|
|
|
* becomes current."
|
|
|
|
*/
|
|
|
|
if ( obj == ctx->Array.ArrayObj ) {
|
|
|
|
CALL_BindVertexArrayAPPLE( ctx->Exec, (0) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The ID is immediately freed for re-use */
|
2009-05-07 14:33:18 -06:00
|
|
|
remove_array_object(ctx, obj);
|
2009-05-07 14:26:17 -06:00
|
|
|
|
|
|
|
/* Unreference the array object.
|
|
|
|
* If refcount hits zero, the object will be deleted.
|
|
|
|
*/
|
|
|
|
_mesa_reference_array_object(ctx, &obj, NULL);
|
2006-06-12 16:26:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2006-06-12 20:02:11 +00:00
|
|
|
* Generate a set of unique array object IDs and store them in \c arrays.
|
2009-06-19 18:17:25 -06:00
|
|
|
* Helper for _mesa_GenVertexArrays[APPLE]() functions below.
|
2006-06-12 16:26:29 +00:00
|
|
|
* \param n Number of IDs to generate.
|
2006-06-12 20:02:11 +00:00
|
|
|
* \param arrays Array of \c n locations to store the IDs.
|
2009-06-19 18:17:25 -06:00
|
|
|
* \param vboOnly Will arrays have to reside in VBOs?
|
2006-06-12 16:26:29 +00:00
|
|
|
*/
|
2009-06-19 18:17:25 -06:00
|
|
|
static void
|
2011-03-19 14:17:41 -06:00
|
|
|
gen_vertex_arrays(struct gl_context *ctx, GLsizei n, GLuint *arrays,
|
|
|
|
GLboolean vboOnly)
|
2006-06-12 16:26:29 +00:00
|
|
|
{
|
|
|
|
GLuint first;
|
|
|
|
GLint i;
|
|
|
|
ASSERT_OUTSIDE_BEGIN_END(ctx);
|
|
|
|
|
|
|
|
if (n < 0) {
|
|
|
|
_mesa_error(ctx, GL_INVALID_VALUE, "glGenVertexArraysAPPLE");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-06-12 20:02:11 +00:00
|
|
|
if (!arrays) {
|
2006-06-12 16:26:29 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-06-19 17:58:47 -06:00
|
|
|
first = _mesa_HashFindFreeKeyBlock(ctx->Array.Objects, n);
|
2006-06-12 16:26:29 +00:00
|
|
|
|
|
|
|
/* Allocate new, empty array objects and return identifiers */
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
struct gl_array_object *obj;
|
|
|
|
GLuint name = first + i;
|
|
|
|
|
|
|
|
obj = (*ctx->Driver.NewArrayObject)( ctx, name );
|
|
|
|
if (!obj) {
|
|
|
|
_mesa_error(ctx, GL_OUT_OF_MEMORY, "glGenVertexArraysAPPLE");
|
|
|
|
return;
|
|
|
|
}
|
2009-06-19 18:17:25 -06:00
|
|
|
obj->VBOonly = vboOnly;
|
2009-05-07 14:33:18 -06:00
|
|
|
save_array_object(ctx, obj);
|
2006-06-12 20:02:11 +00:00
|
|
|
arrays[i] = first + i;
|
2006-06-12 16:26:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-19 18:17:25 -06:00
|
|
|
/**
|
|
|
|
* ARB version of glGenVertexArrays()
|
|
|
|
* All arrays will be required to live in VBOs.
|
|
|
|
*/
|
|
|
|
void GLAPIENTRY
|
|
|
|
_mesa_GenVertexArrays(GLsizei n, GLuint *arrays)
|
|
|
|
{
|
|
|
|
GET_CURRENT_CONTEXT(ctx);
|
|
|
|
gen_vertex_arrays(ctx, n, arrays, GL_TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* APPLE version of glGenVertexArraysAPPLE()
|
|
|
|
* Arrays may live in VBOs or ordinary memory.
|
|
|
|
*/
|
|
|
|
void GLAPIENTRY
|
|
|
|
_mesa_GenVertexArraysAPPLE(GLsizei n, GLuint *arrays)
|
|
|
|
{
|
|
|
|
GET_CURRENT_CONTEXT(ctx);
|
|
|
|
gen_vertex_arrays(ctx, n, arrays, GL_FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-12 16:26:29 +00:00
|
|
|
/**
|
|
|
|
* Determine if ID is the name of an array object.
|
|
|
|
*
|
|
|
|
* \param id ID of the potential array object.
|
|
|
|
* \return \c GL_TRUE if \c id is the name of a array object,
|
|
|
|
* \c GL_FALSE otherwise.
|
|
|
|
*/
|
|
|
|
GLboolean GLAPIENTRY
|
|
|
|
_mesa_IsVertexArrayAPPLE( GLuint id )
|
|
|
|
{
|
|
|
|
struct gl_array_object * obj;
|
|
|
|
GET_CURRENT_CONTEXT(ctx);
|
|
|
|
ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
|
|
|
|
|
|
|
|
if (id == 0)
|
|
|
|
return GL_FALSE;
|
|
|
|
|
|
|
|
obj = lookup_arrayobj(ctx, id);
|
|
|
|
|
|
|
|
return (obj != NULL) ? GL_TRUE : GL_FALSE;
|
|
|
|
}
|