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= "glClearBufferData" >
<info >
2013-11-03 11:43:50 +00:00
<copyright >
<year > 2011-2013</year>
<holder > Khronos Group</holder>
</copyright>
2014-03-28 19:06:55 +00:00
</info>
2013-10-24 07:03:15 +00:00
<refmeta >
<refentrytitle > glClearBufferData</refentrytitle>
<manvolnum > 3G</manvolnum>
</refmeta>
<refnamediv >
<refname > glClearBufferData</refname>
<refpurpose > fill a buffer object's data store with a fixed value</refpurpose>
</refnamediv>
<refsynopsisdiv > <title > C Specification</title>
<funcsynopsis >
<funcprototype >
<funcdef > void <function > glClearBufferData</function> </funcdef>
<paramdef > GLenum <parameter > target</parameter> </paramdef>
<paramdef > GLenum <parameter > internalformat</parameter> </paramdef>
<paramdef > GLenum <parameter > format</parameter> </paramdef>
<paramdef > GLenum <parameter > type</parameter> </paramdef>
<paramdef > const void * <parameter > data</parameter> </paramdef>
</funcprototype>
</funcsynopsis>
</refsynopsisdiv>
2014-03-28 19:06:55 +00:00
<refsect1 xml:id= "parameters" > <title > Parameters</title>
2013-10-24 07:03:15 +00:00
<variablelist >
<varlistentry >
<term > <parameter > target</parameter> </term>
<listitem >
<para >
Specify the target of the operation. <parameter > target</parameter> must be
one of the global buffer binding targets.
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > <parameter > internalformat</parameter> </term>
<listitem >
<para >
The internal format with which the data will be stored in the buffer object.
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > <parameter > size</parameter> </term>
<listitem >
<para >
The size, in basic machine units of the range of the data store to fill.
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > <parameter > format</parameter> </term>
<listitem >
<para >
The format of the data in memory addressed by <parameter > data</parameter> .
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > <parameter > type</parameter> </term>
<listitem >
<para >
The type of the data in memory addressed by <parameter > data</parameter> .
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > <parameter > data</parameter> </term>
<listitem >
<para >
The address of a memory location storing the data to be replicated into the
buffer's data store.
</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
2014-03-28 19:06:55 +00:00
<refsect1 xml:id= "description" > <title > Description</title>
2013-10-24 07:03:15 +00:00
<para >
<function > glClearBufferData</function> fills the entirety of a buffer object's
data store with data from client memory. Data, initially supplied in a format
specified by <parameter > format</parameter> in data type <parameter > type</parameter> is
read from the memory address given by <parameter > data</parameter> and converted into
the internal representation given by <parameter > internalforamt</parameter> .
This converted data is then replicated throughout the buffer object's
data store.
</para>
<para >
If <parameter > data</parameter> is NULL, then the buffer's data store
is filled with zeros.
</para>
</refsect1>
2014-03-28 19:06:55 +00:00
<refsect1 xml:id= "errors" > <title > Errors</title>
2013-10-24 07:03:15 +00:00
<para >
<constant > GL_INVALID_ENUM</constant> is generated if <parameter > target</parameter> not one of the generic buffer binding targets.
</para>
<para >
<constant > GL_INVALID_VALUE</constant> is generated if no buffer is bound to <parameter > target</parameter> .
</para>
<para >
<constant > GL_INVALID_ENUM</constant> is generated if <parameter > internalformat</parameter> is not a sized internal format.
</para>
<para >
<constant > GL_INVALID_OPERATION</constant> is generated if any part of the buffer's data store is
mapped with <citerefentry > <refentrytitle > glMapBufferRange</refentrytitle> </citerefentry> or <citerefentry > <refentrytitle > glMapBuffer.</refentrytitle> </citerefentry>
</para>
</refsect1>
2014-03-28 19:06:55 +00:00
<refsect1 xml:id= "seealso" > <title > See Also</title>
2013-10-24 07:03:15 +00:00
<para >
<citerefentry > <refentrytitle > glClearBufferSubData</refentrytitle> </citerefentry> .
</para>
</refsect1>
2014-03-28 19:06:55 +00:00
<refsect1 xml:id= "Copyright" > <title > Copyright</title>
2013-10-24 07:03:15 +00:00
<para >
2014-03-28 19:06:55 +00:00
Copyright <trademark class= "copyright" /> 2011-2013 Khronos Group.
2013-12-15 21:32:32 +00:00
This material may be distributed subject to the terms and conditions set forth in
2013-10-24 07:03:15 +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> .
2013-10-24 07:03:15 +00:00
</para>
</refsect1>
</refentry>