Lines Matching defs:indices
423 packspu_DrawElements( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices )
433 /*crDebug("DrawElements count=%d, indices=%p", count, indices);*/
452 GLubyte *pIdx = (GLubyte *)indices;
463 GLushort *pIdx = (GLushort *)indices;
474 GLuint *pIdx = (GLuint *)indices;
527 crPackDrawElementsSWAP( mode, count, type, indices );
529 crPackDrawElements( mode, count, type, indices );
547 crPackExpandDrawElementsSWAP( mode, count, type, indices, clientState, cZvaValues ? aAttrib : NULL );
551 crPackExpandDrawElements( mode, count, type, indices, clientState, cZvaValues ? aAttrib : NULL );
571 packspu_DrawRangeElements( GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices )
611 crPackDrawRangeElementsSWAP( mode, start, end, count, type, indices );
613 crPackDrawRangeElements( mode, start, end, count, type, indices );
630 crPackExpandDrawRangeElementsSWAP( mode, start, end, count, type, indices, clientState, cZvaValues ? aAttrib : NULL );
633 crPackExpandDrawRangeElements( mode, start, end, count, type, indices, clientState, cZvaValues ? aAttrib : NULL );
754 void PACKSPU_APIENTRY packspu_MultiDrawElementsEXT( GLenum mode, const GLsizei *count, GLenum type, const GLvoid **indices, GLsizei primcount )
759 packspu_DrawElements(mode, count[i], type, indices[i]);