f0a6d794cedff1796e84570fc8ae21c4f16b177f
[clinton/guile-figl.git] / upstream-man-pages / man3 / glDrawElementsBaseVertex.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook MathML Module V1.1b1//EN"
3 "http://www.oasis-open.org/docbook/xml/mathml/1.1CR1/dbmathml.dtd">
4 <refentry id="glDrawElementsBaseVertex">
5 <refmeta>
6 <refmetainfo>
7 <copyright>
8 <year>2010</year>
9 <holder>Khronos Group</holder>
10 </copyright>
11 </refmetainfo>
12 <refentrytitle>glDrawElementsBaseVertex</refentrytitle>
13 <manvolnum>3G</manvolnum>
14 </refmeta>
15 <refnamediv>
16 <refname>glDrawElementsBaseVertex</refname>
17 <refpurpose>render primitives from array data with a per-element offset</refpurpose>
18 </refnamediv>
19 <refsynopsisdiv><title>C Specification</title>
20 <funcsynopsis>
21 <funcprototype>
22 <funcdef>void <function>glDrawElementsBaseVertex</function></funcdef>
23 <paramdef>GLenum <parameter>mode</parameter></paramdef>
24 <paramdef>GLsizei <parameter>count</parameter></paramdef>
25 <paramdef>GLenum <parameter>type</parameter></paramdef>
26 <paramdef>GLvoid *<parameter>indices</parameter></paramdef>
27 <paramdef>GLint <parameter>basevertex</parameter></paramdef>
28 </funcprototype>
29 </funcsynopsis>
30 </refsynopsisdiv>
31 <!-- eqn: ignoring delim $$ -->
32 <refsect1 id="parameters"><title>Parameters</title>
33 <variablelist>
34 <varlistentry>
35 <term><parameter>mode</parameter></term>
36 <listitem>
37 <para>
38 Specifies what kind of primitives to render.
39 Symbolic constants
40 <constant>GL_POINTS</constant>, <constant>GL_LINE_STRIP</constant>, <constant>GL_LINE_LOOP</constant>,
41 <constant>GL_LINES</constant>, <constant>GL_TRIANGLE_STRIP</constant>, <constant>GL_TRIANGLE_FAN</constant>,
42 and <constant>GL_TRIANGLES</constant> are accepted.
43 </para>
44 </listitem>
45 </varlistentry>
46 <varlistentry>
47 <term><parameter>count</parameter></term>
48 <listitem>
49 <para>
50 Specifies the number of elements to be rendered.
51 </para>
52 </listitem>
53 </varlistentry>
54 <varlistentry>
55 <term><parameter>type</parameter></term>
56 <listitem>
57 <para>
58 Specifies the type of the values in indices. Must be one of <constant>GL_UNSIGNED_BYTE</constant>,
59 <constant>GL_UNSIGNED_SHORT</constant>, or <constant>GL_UNSIGNED_INT</constant>.
60 </para>
61 </listitem>
62 </varlistentry>
63 <varlistentry>
64 <term><parameter>indices</parameter></term>
65 <listitem>
66 <para>
67 Specifies a pointer to the location where the indices are stored.
68 </para>
69 </listitem>
70 </varlistentry>
71 <varlistentry>
72 <term><parameter>basevertex</parameter></term>
73 <listitem>
74 <para>
75 Specifies a constant that should be added to each element of <parameter>indices</parameter>
76 when chosing elements from the enabled vertex arrays.
77 </para>
78 </listitem>
79 </varlistentry>
80 </variablelist>
81 </refsect1>
82 <refsect1 id="description"><title>Description</title>
83 <para>
84 <function>glDrawElementsBaseVertex</function> behaves identically to
85 <citerefentry><refentrytitle>glDrawElements</refentrytitle></citerefentry> except that the <emphasis>i</emphasis>th element
86 transferred by the corresponding draw call will be taken from element <parameter>indices</parameter>[i] + <parameter>basevertex</parameter>
87 of each enabled array. If the resulting value is larger than the maximum value representable by <parameter>type</parameter>,
88 it is as if the calculation were upconverted to 32-bit unsigned integers (with wrapping on overflow conditions).
89 The operation is undefined if the sum would be negative.
90 </para>
91 </refsect1>
92 <refsect1 id="notes"><title>Notes</title>
93 <function>glDrawElementsBaseVertex</function> is only supported if the GL version is 3.2 or greater, or if
94 the <code>ARB_draw_elements_base_vertex</code> extension is supported.
95 </refsect1>
96 <refsect1 id="errors"><title>Errors</title>
97 <para>
98 <constant>GL_INVALID_ENUM</constant> is generated if <parameter>mode</parameter> is not an accepted value.
99 </para>
100 <para>
101 <constant>GL_INVALID_VALUE</constant> is generated if <parameter>count</parameter> is negative.
102 </para>
103 <para>
104 <constant>GL_INVALID_OPERATION</constant> is generated if a geometry shader is active and <parameter>mode</parameter>
105 is incompatible with the input primitive type of the geometry shader in the currently installed program object.
106 </para>
107 <para>
108 <constant>GL_INVALID_OPERATION</constant> is generated if a non-zero buffer object name is bound to an
109 enabled array or the element array and the buffer object's data store is currently mapped.
110 </para>
111 </refsect1>
112 <refsect1 id="seealso"><title>See Also</title>
113 <para>
114 <citerefentry><refentrytitle>glDrawElements</refentrytitle></citerefentry>,
115 <citerefentry><refentrytitle>glDrawRangeElements</refentrytitle></citerefentry>,
116 <citerefentry><refentrytitle>glDrawRangeElementsBaseVertex</refentrytitle></citerefentry>,
117 <citerefentry><refentrytitle>glDrawElementsInstanced</refentrytitle></citerefentry>,
118 <citerefentry><refentrytitle>glDrawElementsInstancedBaseVertex</refentrytitle></citerefentry>
119 </para>
120 </refsect1>
121 <refsect1 id="Copyright"><title>Copyright</title>
122 <para>
123 Copyright <trademark class="copyright"></trademark> 2010 Khronos Group.
124 This material may be distributed subject to the terms and conditions set forth in
125 the Open Publication License, v 1.0, 8 June 1999.
126 <ulink url="http://opencontent.org/openpub/">http://opencontent.org/openpub/</ulink>.
127 </para>
128 </refsect1>
129 </refentry>