Returns the address of a vertex data array.
OpenGL C bindings library: libGL.a
void glGetPointervEXT(GLenum pname, GLvoid **params)
glGetPointervEXT returns array pointer information. pname is a symbolic constant indicating the array pointer to be returned, and params is a pointer to a location in which to place the returned data.
The array pointers are client side state.
glGetPointervEXT is part of the _extname(EXT_vertex_array) extension, not part of the core GL command set. If _extstring(EXT_vertex_array) is included in the string returned by glGetString, when called with argument GL_EXTENSIONS, extension _extname(EXT_vertex_array) is supported.
GL_INVALID_ENUM is generated if pname is not an accepted value.
/usr/include/GL/glext.h | Contains extensions to C language constants, variable type definitions, and ANSI function prototypes for OpenGL. |
The glArrayElementEXT subroutine, glColorPointerEXT subroutine, glDrawArraysEXT subroutine, glEdgeFlagPointerEXT subroutine, glIndexPointerEXT subroutine, glNormalPointerEXT subroutine, glTexCoordPointerEXT subroutine, glVertexPointerEXT subroutine.