include more low-level bindings
[clinton/guile-figl.git] / upstream-man-pages / man4 / glGetBufferPointerv.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="glGetBufferPointerv">
5 <refmeta>
6 <refmetainfo>
7 <copyright>
8 <year>2005</year>
9 <holder>Sams Publishing</holder>
10 </copyright>
11 </refmetainfo>
12 <refentrytitle>glGetBufferPointerv</refentrytitle>
13 <manvolnum>3G</manvolnum>
14 </refmeta>
15 <refnamediv>
16 <refname>glGetBufferPointerv</refname>
17 <refpurpose>return the pointer to a mapped buffer object's data store</refpurpose>
18 </refnamediv>
19 <refsynopsisdiv><title>C Specification</title>
20 <funcsynopsis>
21 <funcprototype>
22 <funcdef>void <function>glGetBufferPointerv</function></funcdef>
23 <paramdef>GLenum <parameter>target</parameter></paramdef>
24 <paramdef>GLenum <parameter>pname</parameter></paramdef>
25 <paramdef>GLvoid ** <parameter>params</parameter></paramdef>
26 </funcprototype>
27 </funcsynopsis>
28 </refsynopsisdiv>
29 <refsect1 id="parameters"><title>Parameters</title>
30 <variablelist>
31 <varlistentry>
32 <term><parameter>target</parameter></term>
33 <listitem>
34 <para>
35 Specifies the target buffer object.
36 The symbolic constant must be
37 <constant>GL_ARRAY_BUFFER</constant>,
38 <constant>GL_ATOMIC_COUNTER_BUFFER</constant>,
39 <constant>GL_COPY_READ_BUFFER</constant>,
40 <constant>GL_COPY_WRITE_BUFFER</constant>,
41 <constant>GL_DRAW_INDIRECT_BUFFER</constant>,
42 <constant>GL_DISPATCH_INDIRECT_BUFFER</constant>,
43 <constant>GL_ELEMENT_ARRAY_BUFFER</constant>,
44 <constant>GL_PIXEL_PACK_BUFFER</constant>,
45 <constant>GL_PIXEL_UNPACK_BUFFER</constant>,
46 <constant>GL_SHADER_STORAGE_BUFFER</constant>,
47 <constant>GL_TEXTURE_BUFFER</constant>,
48 <constant>GL_TRANSFORM_FEEDBACK_BUFFER</constant>, or
49 <constant>GL_UNIFORM_BUFFER</constant>.
50 </para>
51 </listitem>
52 </varlistentry>
53 <varlistentry>
54 <term><parameter>pname</parameter></term>
55 <listitem>
56 <para>
57 Specifies the pointer to be returned. The symbolic constant must be <constant>GL_BUFFER_MAP_POINTER</constant>.
58 </para>
59 </listitem>
60 </varlistentry>
61 <varlistentry>
62 <term><parameter>params</parameter></term>
63 <listitem>
64 <para>
65 Returns the pointer value specified by <parameter>pname</parameter>.
66 </para>
67 </listitem>
68 </varlistentry>
69 </variablelist>
70 </refsect1>
71 <refsect1 id="description"><title>Description</title>
72 <para>
73 <function>glGetBufferPointerv</function> returns pointer information. <parameter>pname</parameter> is a symbolic constant
74 indicating the pointer to be returned, which must be <constant>GL_BUFFER_MAP_POINTER</constant>, the pointer
75 to which the buffer object's data store is mapped. If the data store is not currently mapped, <constant>NULL</constant> is returned.
76 <parameter>params</parameter> is a pointer to a location in which to place the returned pointer value.
77 </para>
78 </refsect1>
79 <refsect1 id="notes"><title>Notes</title>
80 <para>
81 If an error is generated,
82 no change is made to the contents of <parameter>params</parameter>.
83 </para>
84 <para>
85 The initial value for the pointer is <constant>NULL</constant>.
86 </para>
87 <para>
88 The <constant>GL_ATOMIC_COUNTER_BUFER</constant> target is available only if the GL version is 4.2 or greater.
89 </para>
90 <para>
91 The <constant>GL_DISPATCH_INDIRECT_BUFFER</constant> and <constant>GL_SHADER_STORAGE_BUFFER</constant> targets are available only if the GL version is 4.3 or greater.
92 </para>
93 </refsect1>
94 <refsect1 id="errors"><title>Errors</title>
95 <para>
96 <constant>GL_INVALID_ENUM</constant> is generated if <parameter>target</parameter> or <parameter>pname</parameter> is not an
97 accepted value.
98 </para>
99 <para>
100 <constant>GL_INVALID_OPERATION</constant> is generated if the reserved buffer object name 0 is bound to <parameter>target</parameter>.
101 </para>
102 </refsect1>
103 <refsect1 id="seealso"><title>See Also</title>
104 <para>
105 <citerefentry><refentrytitle>glBindBuffer</refentrytitle></citerefentry>,
106 <citerefentry><refentrytitle>glMapBuffer</refentrytitle></citerefentry>
107 </para>
108 </refsect1>
109 <refsect1 id="Copyright"><title>Copyright</title>
110 <para>
111 Copyright <trademark class="copyright"></trademark> 2005 Addison-Wesley.
112 This material may be distributed subject to the terms and conditions set forth in
113 the Open Publication License, v 1.0, 8 June 1999.
114 <ulink url="http://opencontent.org/openpub/">http://opencontent.org/openpub/</ulink>.
115 </para>
116 </refsect1>
117 </refentry>