GlDrawElements

From QB64 Phoenix Edition Wiki
Revision as of 18:52, 30 April 2022 by SMcNeill (talk | contribs) (Created page with "'''_glDrawElements:''' render primitives from array data {{PageSyntax}} : SUB _glDrawElements (BYVAL mode AS _UNSIGNED LONG, BYVAL count AS LONG, BYVAL type AS _UNSIGNED LONG, indices AS _OFFSET) : void '''_glDrawElements'''(GLenum {{Parameter|mode}}, GLsizei {{Parameter|count}}, GLenum {{Parameter|type}}, const GLvoid * {{Parameter|indices}}); ; mode : Specifies what kind of primitives to render. Symbolic constants {{KW|_GL_POINTS}}, {{KW|_GL_LINE_STRIP}}, {{KW|_...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

_glDrawElements: render primitives from array data


Syntax

SUB _glDrawElements (BYVAL mode AS _UNSIGNED LONG, BYVAL count AS LONG, BYVAL type AS _UNSIGNED LONG, indices AS _OFFSET)
void _glDrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices);


mode
Specifies what kind of primitives to render. Symbolic constants Template:KW, Template:KW, Template:KW, Template:KW, Template:KW, Template:KW, Template:KW, Template:KW, Template:KW, Template:KW, Template:KW and Template:KW are accepted.
count
Specifies the number of elements to be rendered.
type
Specifies the type of the values in indices. Must be one of Template:KW, Template:KW, or Template:KW.
indices
Specifies a pointer to the location where the indices are stored.


Description

_glDrawElements specifies multiple geometric primitives with very few subroutine calls. Instead of calling a GL function to pass each individual vertex, normal, texture coordinate, edge flag, or color, you can prespecify separate arrays of vertices, normals, and so on, and use them to construct a sequence of primitives with a single call to _glDrawElements.

When _glDrawElements is called, it uses count sequential elements from an enabled array, starting at indices (interpreted as a byte count) to construct a sequence of geometric primitives. mode specifies what kind of primitives are constructed and how the array elements construct these primitives. If more than one array is enabled, each is used.

Vertex attributes that are modified by _glDrawElements have an unspecified value after _glDrawElements returns. Attributes that aren't modified maintain their previous values.


Template:PageNotes

Template:KW, Template:KW, Template:KW and Template:KW are available only if the GL version is 3.2 or greater.


Template:PageErrors

Template:KW is generated if mode is not an accepted value.

Template:KW is generated if count is negative.

Template:KW is generated if a geometry shader is active and mode is incompatible with the input primitive type of the geometry shader in the currently installed program object.

Template:KW is generated if a non-zero buffer object name is bound to an enabled array or the element array and the buffer object's data store is currently mapped.


See also

SUB _GL Template:KW, Template:KW, Template:KW, Template:KW, Template:KW, Template:KW, Template:KW, Template:KW, Template:KW, Template:KW, Template:KW, Template:KW, Template:KW


Template:PageCopyright