2014-03-28 19:06:55 +00:00
<!DOCTYPE refentry [ <!ENTITY % mathent SYSTEM "math.ent"> %mathent; ]>
<!-- Converted by db4 - upgrade version 1.1 -->
<refentry xmlns= "http://docbook.org/ns/docbook" version= "5.0" xml:id= "glBufferData" >
<info >
2013-11-03 11:43:50 +00:00
<copyright >
<year > 2005</year>
<holder > Sams Publishing</holder>
</copyright>
<copyright >
2014-03-28 19:06:55 +00:00
<year > 2010-2014</year>
2013-11-03 11:43:50 +00:00
<holder > Khronos Group</holder>
</copyright>
2014-03-28 19:06:55 +00:00
</info>
2009-03-08 00:46:58 +00:00
<refmeta >
<refentrytitle > glBufferData</refentrytitle>
<manvolnum > 3G</manvolnum>
</refmeta>
<refnamediv >
<refname > glBufferData</refname>
<refpurpose > creates and initializes a buffer object's data store</refpurpose>
</refnamediv>
2014-03-28 19:06:55 +00:00
<refsynopsisdiv >
<title > C Specification</title>
2009-03-08 00:46:58 +00:00
<funcsynopsis >
<funcprototype >
<funcdef > void <function > glBufferData</function> </funcdef>
<paramdef > GLenum <parameter > target</parameter> </paramdef>
<paramdef > GLsizeiptr <parameter > size</parameter> </paramdef>
<paramdef > const GLvoid * <parameter > data</parameter> </paramdef>
<paramdef > GLenum <parameter > usage</parameter> </paramdef>
</funcprototype>
</funcsynopsis>
</refsynopsisdiv>
2014-03-28 19:06:55 +00:00
<refsect1 xml:id= "parameters" > <title > Parameters</title>
2009-03-08 00:46:58 +00:00
<variablelist >
<varlistentry >
<term > <parameter > target</parameter> </term>
<listitem >
<para >
Specifies the target buffer object.
2014-03-28 19:06:55 +00:00
The symbolic constant must be
2013-10-23 18:17:08 +00:00
<constant > GL_ARRAY_BUFFER</constant> ,
<constant > GL_ATOMIC_COUNTER_BUFFER</constant> ,
2010-11-21 14:34:29 +00:00
<constant > GL_COPY_READ_BUFFER</constant> ,
<constant > GL_COPY_WRITE_BUFFER</constant> ,
2013-10-23 18:17:08 +00:00
<constant > GL_DRAW_INDIRECT_BUFFER</constant> ,
<constant > GL_DISPATCH_INDIRECT_BUFFER</constant> ,
2009-03-08 00:46:58 +00:00
<constant > GL_ELEMENT_ARRAY_BUFFER</constant> ,
2010-11-21 14:34:29 +00:00
<constant > GL_PIXEL_PACK_BUFFER</constant> ,
<constant > GL_PIXEL_UNPACK_BUFFER</constant> ,
2013-10-23 18:17:08 +00:00
<constant > GL_SHADER_STORAGE_BUFFER</constant> ,
2010-11-21 14:34:29 +00:00
<constant > GL_TRANSFORM_FEEDBACK_BUFFER</constant> , or
<constant > GL_UNIFORM_BUFFER</constant> .
2009-03-08 00:46:58 +00:00
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > <parameter > size</parameter> </term>
<listitem >
<para >
Specifies the size in bytes of the buffer object's new data store.
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > <parameter > data</parameter> </term>
<listitem >
<para >
Specifies a pointer to data that will be copied into the data store for initialization,
or <constant > NULL</constant> if no data is to be copied.
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > <parameter > usage</parameter> </term>
<listitem >
<para >
Specifies the expected usage pattern of the data store. The symbolic constant must be
2013-11-03 11:43:50 +00:00
<constant > GL_STREAM_DRAW</constant> , <constant > GL_STREAM_READ</constant> , <constant > GL_STREAM_COPY</constant> ,
<constant > GL_STATIC_DRAW</constant> , <constant > GL_STATIC_READ</constant> , <constant > GL_STATIC_COPY</constant> ,
2009-03-08 00:46:58 +00:00
<constant > GL_DYNAMIC_DRAW</constant> , <constant > GL_DYNAMIC_READ</constant> , or <constant > GL_DYNAMIC_COPY</constant> .
</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
2014-03-28 19:06:55 +00:00
<refsect1 xml:id= "description" > <title > Description</title>
2009-03-08 00:46:58 +00:00
<para >
<function > glBufferData</function> creates a new data store for the buffer object currently bound to
<parameter > target</parameter> . Any pre-existing data store is deleted. The new data store is created with the
specified <parameter > size</parameter> in bytes and <parameter > usage</parameter> . If <parameter > data</parameter>
2013-11-03 11:43:50 +00:00
is not <constant > NULL</constant> , the data store is initialized with data from this pointer. In its initial
state, the new data store is not mapped, it has a <constant > NULL</constant> mapped pointer, and its mapped access
2009-03-08 00:46:58 +00:00
is <constant > GL_READ_WRITE</constant> .
</para>
<para >
2013-11-03 11:43:50 +00:00
<parameter > usage</parameter> is a hint to the GL implementation as to how a buffer object's data store will be
accessed. This enables the GL implementation to make more intelligent decisions that may significantly
2009-03-08 00:46:58 +00:00
impact buffer object performance. It does not, however, constrain the actual usage of the data store.
2013-11-03 11:43:50 +00:00
<parameter > usage</parameter> can be broken down into two parts: first, the frequency of access (modification
2009-03-08 00:46:58 +00:00
and usage), and second, the nature of that access. The frequency of access may be one of these:
</para>
<variablelist >
<varlistentry >
<term > STREAM</term>
<listitem >
<para >
The data store contents will be modified once and used at most a few times.
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > STATIC</term>
<listitem >
<para >
The data store contents will be modified once and used many times.
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > DYNAMIC</term>
<listitem >
<para >
The data store contents will be modified repeatedly and used many times.
</para>
</listitem>
</varlistentry>
</variablelist>
<para >
The nature of access may be one of these:
</para>
<variablelist >
<varlistentry >
<term > DRAW</term>
<listitem >
<para >
The data store contents are modified by the application, and used as the source for GL drawing and
image specification commands.
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > READ</term>
<listitem >
<para >
2013-11-03 11:43:50 +00:00
The data store contents are modified by reading data from the GL, and used to return that data
2009-03-08 00:46:58 +00:00
when queried by the application.
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > COPY</term>
<listitem >
<para >
The data store contents are modified by reading data from the GL, and used as the source for GL
drawing and image specification commands.
</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
2014-03-28 19:06:55 +00:00
<refsect1 xml:id= "notes" > <title > Notes</title>
2009-03-08 00:46:58 +00:00
<para >
If <parameter > data</parameter> is <constant > NULL</constant> , a data store of the specified size is still created,
but its contents remain uninitialized and thus undefined.
</para>
<para >
2013-11-03 11:43:50 +00:00
Clients must align data elements consistently with the requirements of the client
2009-03-08 00:46:58 +00:00
platform, with an additional base-level requirement that an offset within a buffer to
2014-03-28 19:06:55 +00:00
a datum comprising <inlineequation > <mml:math xmlns:mml= "http://www.w3.org/1998/Math/MathML" overflow= "scroll" > <mml:mi mathvariant= "italic" > N</mml:mi> </mml:math> </inlineequation> bytes be a
multiple of <inlineequation > <mml:math xmlns:mml= "http://www.w3.org/1998/Math/MathML" overflow= "scroll" > <mml:mi mathvariant= "italic" > N</mml:mi> </mml:math> </inlineequation> .
2009-03-08 00:46:58 +00:00
</para>
2013-10-23 18:17:08 +00:00
<para >
2014-03-28 19:06:55 +00:00
The <constant > GL_COPY_READ_BUFFER</constant> , <constant > GL_COPY_WRITE_BUFFER</constant> ,
<constant > GL_PIXEL_PACK_BUFFER</constant> ,<constant > GL_PIXEL_UNPACK_READ_BUFFER</constant> ,
<constant > GL_TRANSFORM_FEEDBACK_BUFFER</constant> and <constant > GL_UNIFORM_BUFFER</constant>
targets are available only if the GL ES version is 3.0 or greater.
2013-10-23 18:17:08 +00:00
</para>
<para >
2014-03-28 19:06:55 +00:00
The <constant > GL_ATOMIC_COUNTER_BUFFER</constant> , <constant > GL_DISPATCH_INDIRECT_BUFFER</constant> ,
<constant > GL_DRAW_INDIRECT_BUFFER</constant> and <constant > GL_SHADER_STORAGE_BUFFER</constant>
targets are available only if the GL ES version is 3.1 or greater.
2013-10-23 18:17:08 +00:00
</para>
2009-03-08 00:46:58 +00:00
</refsect1>
2014-03-28 19:06:55 +00:00
<refsect1 xml:id= "errors" > <title > Errors</title>
2009-03-08 00:46:58 +00:00
<para >
2013-11-03 11:43:50 +00:00
<constant > GL_INVALID_ENUM</constant> is generated if <parameter > target</parameter> is not
2010-11-21 14:34:29 +00:00
one of the accepted buffer targets.
2009-03-08 00:46:58 +00:00
</para>
<para >
2013-11-03 11:43:50 +00:00
<constant > GL_INVALID_ENUM</constant> is generated if <parameter > usage</parameter> is not
<constant > GL_STREAM_DRAW</constant> , <constant > GL_STREAM_READ</constant> , <constant > GL_STREAM_COPY</constant> ,
<constant > GL_STATIC_DRAW</constant> , <constant > GL_STATIC_READ</constant> , <constant > GL_STATIC_COPY</constant> ,
2009-03-08 00:46:58 +00:00
<constant > GL_DYNAMIC_DRAW</constant> , <constant > GL_DYNAMIC_READ</constant> , or <constant > GL_DYNAMIC_COPY</constant> .
</para>
<para >
<constant > GL_INVALID_VALUE</constant> is generated if <parameter > size</parameter> is negative.
</para>
<para >
<constant > GL_INVALID_OPERATION</constant> is generated if the reserved buffer object name 0 is bound to <parameter > target</parameter> .
</para>
<para >
<constant > GL_OUT_OF_MEMORY</constant> is generated if the GL is unable to create a data store with the specified <parameter > size</parameter> .
</para>
</refsect1>
2014-03-28 19:06:55 +00:00
<refsect1 xml:id= "associatedgets" > <title > Associated Gets</title>
2009-03-08 00:46:58 +00:00
<para >
2010-11-21 14:34:29 +00:00
<citerefentry > <refentrytitle > glGetBufferParameter</refentrytitle> </citerefentry> with argument <constant > GL_BUFFER_SIZE</constant> or <constant > GL_BUFFER_USAGE</constant>
2009-03-08 00:46:58 +00:00
</para>
</refsect1>
2014-03-28 19:06:55 +00:00
<refsect1 xml:id= "versions" >
<title > API Version Support</title>
<informaltable >
<tgroup cols= "4" align= "left" >
<xi:include xmlns:xi= "http://www.w3.org/2001/XInclude" href= "apifunchead.xml" xpointer= "xpointer(/*/*)" />
<tbody >
<row >
<entry > glBufferData</entry>
<xi:include xmlns:xi= "http://www.w3.org/2001/XInclude" href= "apiversion.xml" xpointer= "xpointer(/*/*[@role='es20']/*)" />
</row>
</tbody>
</tgroup>
</informaltable>
</refsect1>
<refsect1 xml:id= "seealso" > <title > See Also</title>
2009-03-08 00:46:58 +00:00
<para >
<citerefentry > <refentrytitle > glBindBuffer</refentrytitle> </citerefentry> ,
<citerefentry > <refentrytitle > glBufferSubData</refentrytitle> </citerefentry> ,
2014-03-28 19:06:55 +00:00
<citerefentry > <refentrytitle > glMapBufferRange</refentrytitle> </citerefentry> ,
2009-03-08 00:46:58 +00:00
<citerefentry > <refentrytitle > glUnmapBuffer</refentrytitle> </citerefentry>
</para>
</refsect1>
2014-03-28 19:06:55 +00:00
<refsect1 xml:id= "Copyright" > <title > Copyright</title>
2009-03-08 00:46:58 +00:00
<para >
2014-03-28 19:06:55 +00:00
Copyright <trademark class= "copyright" /> 2005 Addison-Wesley.
Copyright <trademark class= "copyright" /> 2010-2014 Khronos Group.
2013-11-03 11:43:50 +00:00
This material may be distributed subject to the terms and conditions set forth in
2009-03-08 00:46:58 +00:00
the Open Publication License, v 1.0, 8 June 1999.
2014-03-28 19:06:55 +00:00
<link xmlns:xlink= "http://www.w3.org/1999/xlink" xlink:href= "http://opencontent.org/openpub/" > http://opencontent.org/openpub/</link> .
2009-03-08 00:46:58 +00:00
</para>
</refsect1>
</refentry>