diff options
author | Brian Paul <[email protected]> | 2003-09-17 18:15:13 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-09-17 18:15:13 +0000 |
commit | d2afb39d1997e9f2e3c64fc9fa49393e2839d8a1 (patch) | |
tree | d28d90c58f3ef69237fd2a7e6801b46ab71458ae /src/mesa/tnl/t_array_api.c | |
parent | 1a5709dc5bb5dcb0dbb1b0e6c7b058c7a3039f16 (diff) |
Implement GL_ELEMENT_ARRAY_BUFFER_ARB for buffer objects.
Diffstat (limited to 'src/mesa/tnl/t_array_api.c')
-rw-r--r-- | src/mesa/tnl/t_array_api.c | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/src/mesa/tnl/t_array_api.c b/src/mesa/tnl/t_array_api.c index 95bc293beef..229371fc0a9 100644 --- a/src/mesa/tnl/t_array_api.c +++ b/src/mesa/tnl/t_array_api.c @@ -62,8 +62,14 @@ static void fallback_drawelements( GLcontext *ctx, GLenum mode, GLsizei count, { if (_tnl_hard_begin(ctx, mode)) { GLint i; - for (i = 0 ; i < count ; i++) - glArrayElement( indices[i] ); + if (ctx->Array.ElementArrayBufferObj->Name) { + /* use indices in the buffer object */ + ASSERT(ctx->Array.ElementArrayBufferObj->Data); + indices = (const GLuint *) ctx->Array.ElementArrayBufferObj->Data; + } + for (i = 0 ; i < count ; i++) { + glArrayElement( indices[i] ); + } glEnd(); } } @@ -260,6 +266,12 @@ _tnl_DrawRangeElements(GLenum mode, if (MESA_VERBOSE & VERBOSE_API) _mesa_debug(NULL, "_tnl_DrawRangeElements %d %d %d\n", start, end, count); + if (ctx->Array.ElementArrayBufferObj->Name) { + /* use indices in the buffer object */ + ASSERT(ctx->Array.ElementArrayBufferObj->Data); + indices = (GLuint *) ctx->Array.ElementArrayBufferObj->Data; + } + /* Check arguments, etc. */ if (!_mesa_validate_DrawRangeElements( ctx, mode, start, end, count, @@ -327,6 +339,12 @@ _tnl_DrawElements(GLenum mode, GLsizei count, GLenum type, if (MESA_VERBOSE & VERBOSE_API) _mesa_debug(NULL, "_tnl_DrawElements %d\n", count); + if (ctx->Array.ElementArrayBufferObj->Name) { + /* use indices in the buffer object */ + ASSERT(ctx->Array.ElementArrayBufferObj->Data); + indices = (const GLvoid *) ctx->Array.ElementArrayBufferObj->Data; + } + /* Check arguments, etc. */ if (!_mesa_validate_DrawElements( ctx, mode, count, type, indices )) |