rename upstream-man-pages to upstream-doc
[clinton/guile-figl.git] / upstream-doc / man3 / glGetBufferSubData.xml
CommitLineData
7faf1d71
AW
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="glGetBufferSubData">
5 <refmeta>
6 <refmetainfo>
7 <copyright>
8 <year>2005</year>
9 <holder>Sams Publishing</holder>
10 </copyright>
11 </refmetainfo>
12 <refentrytitle>glGetBufferSubData</refentrytitle>
13 <manvolnum>3G</manvolnum>
14 </refmeta>
15 <refnamediv>
16 <refname>glGetBufferSubData</refname>
17 <refpurpose>returns a subset of a buffer object's data store</refpurpose>
18 </refnamediv>
19 <refsynopsisdiv><title>C Specification</title>
20 <funcsynopsis>
21 <funcprototype>
22 <funcdef>void <function>glGetBufferSubData</function></funcdef>
23 <paramdef>GLenum <parameter>target</parameter></paramdef>
24 <paramdef>GLintptr <parameter>offset</parameter></paramdef>
25 <paramdef>GLsizeiptr <parameter>size</parameter></paramdef>
26 <paramdef>GLvoid * <parameter>data</parameter></paramdef>
27 </funcprototype>
28 </funcsynopsis>
29 </refsynopsisdiv>
30 <!-- eqn: ignoring delim $$ -->
31 <refsect1 id="parameters"><title>Parameters</title>
32 <variablelist>
33 <varlistentry>
34 <term><parameter>target</parameter></term>
35 <listitem>
36 <para>
37 Specifies the target buffer object.
38 The symbolic constant must be <constant>GL_ARRAY_BUFFER</constant>,
39 <constant>GL_COPY_READ_BUFFER</constant>,
40 <constant>GL_COPY_WRITE_BUFFER</constant>,
41 <constant>GL_ELEMENT_ARRAY_BUFFER</constant>,
42 <constant>GL_PIXEL_PACK_BUFFER</constant>,
43 <constant>GL_PIXEL_UNPACK_BUFFER</constant>,
44 <constant>GL_TEXTURE_BUFFER</constant>,
45 <constant>GL_TRANSFORM_FEEDBACK_BUFFER</constant>, or
46 <constant>GL_UNIFORM_BUFFER</constant>.
47 </para>
48 </listitem>
49 </varlistentry>
50 <varlistentry>
51 <term><parameter>offset</parameter></term>
52 <listitem>
53 <para>
54 Specifies the offset into the buffer object's data store from which data will be returned,
55 measured in bytes.
56 </para>
57 </listitem>
58 </varlistentry>
59 <varlistentry>
60 <term><parameter>size</parameter></term>
61 <listitem>
62 <para>
63 Specifies the size in bytes of the data store region being returned.
64 </para>
65 </listitem>
66 </varlistentry>
67 <varlistentry>
68 <term><parameter>data</parameter></term>
69 <listitem>
70 <para>
71 Specifies a pointer to the location where buffer object data is returned.
72 </para>
73 </listitem>
74 </varlistentry>
75 </variablelist>
76 </refsect1>
77 <refsect1 id="description"><title>Description</title>
78 <para>
79 <function>glGetBufferSubData</function> returns some or all of the data from the buffer object currently
80 bound to <parameter>target</parameter>. Data starting at byte offset <parameter>offset</parameter> and
81 extending for <parameter>size</parameter> bytes is copied from the data store to the memory pointed to by
82 <parameter>data</parameter>. An error is thrown if the buffer object is currently mapped, or if
83 <parameter>offset</parameter> and <parameter>size</parameter> together define a range beyond the bounds
84 of the buffer object's data store.
85 </para>
86 </refsect1>
87 <refsect1 id="notes"><title>Notes</title>
88 <para>
89 If an error is generated,
90 no change is made to the contents of <parameter>data</parameter>.
91 </para>
92 </refsect1>
93 <refsect1 id="errors"><title>Errors</title>
94 <para>
95 <constant>GL_INVALID_ENUM</constant> is generated if <parameter>target</parameter> is not
96 <constant>GL_ARRAY_BUFFER</constant>, <constant>GL_ELEMENT_ARRAY_BUFFER</constant>,
97 <constant>GL_PIXEL_PACK_BUFFER</constant>, or <constant>GL_PIXEL_UNPACK_BUFFER</constant>.
98 </para>
99 <para>
100 <constant>GL_INVALID_VALUE</constant> is generated if <parameter>offset</parameter> or
101 <parameter>size</parameter> is negative, or if together they define a region of memory
102 that extends beyond the buffer object's allocated data store.
103 </para>
104 <para>
105 <constant>GL_INVALID_OPERATION</constant> is generated if the reserved buffer object name 0 is bound to <parameter>target</parameter>.
106 </para>
107 <para>
108 <constant>GL_INVALID_OPERATION</constant> is generated if the buffer object being queried is mapped.
109 </para>
110 </refsect1>
111 <refsect1 id="seealso"><title>See Also</title>
112 <para>
113 <citerefentry><refentrytitle>glBindBuffer</refentrytitle></citerefentry>,
114 <citerefentry><refentrytitle>glBufferData</refentrytitle></citerefentry>,
115 <citerefentry><refentrytitle>glBufferSubData</refentrytitle></citerefentry>,
116 <citerefentry><refentrytitle>glMapBuffer</refentrytitle></citerefentry>,
117 <citerefentry><refentrytitle>glUnmapBuffer</refentrytitle></citerefentry>
118 </para>
119 </refsect1>
120 <refsect1 id="Copyright"><title>Copyright</title>
121 <para>
122 Copyright <trademark class="copyright"></trademark> 2005 Addison-Wesley.
123 This material may be distributed subject to the terms and conditions set forth in
124 the Open Publication License, v 1.0, 8 June 1999.
125 <ulink url="http://opencontent.org/openpub/">http://opencontent.org/openpub/</ulink>.
126 </para>
127 </refsect1>
128</refentry>