include more low-level bindings
[clinton/guile-figl.git] / upstream-man-pages / man3 / xhtml / glMapBufferRange.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "xhtml1-transitional.dtd">
3 <!-- saved from url=(0013)about:internet -->
4 <?xml-stylesheet type="text/xsl" href="mathml.xsl"?><html xmlns="http://www.w3.org/1999/xhtml" xmlns:pref="http://www.w3.org/2002/Math/preference" pref:renderer="mathplayer-dl"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link rel="stylesheet" type="text/css" href="opengl-man.css" /><title>glMapBufferRange</title><meta name="generator" content="DocBook XSL Stylesheets V1.75.2" /></head><body><div class="refentry" title="glMapBufferRange"><a id="glMapBufferRange"></a><div class="titlepage"></div><div class="refnamediv"><h2>Name</h2><p>glMapBufferRange — map a section of a buffer object's data store</p></div><div class="refsynopsisdiv" title="C Specification"><h2>C Specification</h2><div class="funcsynopsis"><table border="0" summary="Function synopsis" cellspacing="0" cellpadding="0" class="funcprototype-table"><tr><td><code class="funcdef">void *<b class="fsfunc">glMapBufferRange</b>(</code></td><td>GLenum <var class="pdparam">target</var>, </td></tr><tr><td> </td><td>GLintptr <var class="pdparam">offset</var>, </td></tr><tr><td> </td><td>GLsizeiptr <var class="pdparam">length</var>, </td></tr><tr><td> </td><td>GLbitfield <var class="pdparam">access</var><code>)</code>;</td></tr></table><div class="funcprototype-spacer"> </div></div></div><div class="refsect1" title="Parameters"><a id="parameters"></a><h2>Parameters</h2><div class="variablelist"><dl><dt><span class="term"><em class="parameter"><code>target</code></em></span></dt><dd><p>
5 Specifies a binding to which the target buffer is bound.
6 </p></dd><dt><span class="term"><em class="parameter"><code>offset</code></em></span></dt><dd><p>
7 Specifies a the starting offset within the buffer of the range to be mapped.
8 </p></dd><dt><span class="term"><em class="parameter"><code>length</code></em></span></dt><dd><p>
9 Specifies a length of the range to be mapped.
10 </p></dd><dt><span class="term"><em class="parameter"><code>access</code></em></span></dt><dd><p>
11 Specifies a combination of access flags indicating the desired access to the range.
12 </p></dd></dl></div></div><div class="refsect1" title="Description"><a id="description"></a><h2>Description</h2><p>
13 <code class="function">glMapBufferRange</code> maps all or part of the data store of a buffer object into the client's address
14 space. <em class="parameter"><code>target</code></em> specifies the target to which the buffer is bound and must be one of <code class="constant">GL_ARRAY_BUFFER</code>,
15 <code class="constant">GL_COPY_READ_BUFFER</code>, <code class="constant">GL_COPY_WRITE_BUFFER</code>, <code class="constant">GL_ELEMENT_ARRAY_BUFFER</code>,
16 <code class="constant">GL_PIXEL_PACK_BUFFER</code>, <code class="constant">GL_PIXEL_UNPACK_BUFFER</code>, <code class="constant">GL_TEXTURE_BUFFER</code>,
17 <code class="constant">GL_TRANSFORM_FEEDBACK_BUFFER</code>, or <code class="constant">GL_UNIFORM_BUFFER</code>. <em class="parameter"><code>offset</code></em> and
18 <em class="parameter"><code>length</code></em> indicate the range of data in the buffer object htat is to be mapped, in terms of basic machine units.
19 <em class="parameter"><code>access</code></em> is a bitfield containing flags which describe the requested mapping. These flags are described below.
20 </p><p>
21 If no error occurs, a pointer to the beginning of the mapped range is returned once all pending operations on that buffer have
22 completed, and may be used to modify and/or query the corresponding range of the buffer, according to the following flag bits set
23 in <em class="parameter"><code>access</code></em>:
24 </p><div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p>
25 <code class="constant">GL_MAP_READ_BIT</code> indicates that the returned pointer may be used to read
26 buffer object data. No GL error is generated if the pointer is used to query
27 a mapping which excludes this flag, but the result is undefined and system
28 errors (possibly including program termination) may occur.
29 </p></li><li class="listitem"><p>
30 <code class="constant">GL_MAP_WRITE_BIT</code> indicates that the returned pointer may be used to modify
31 buffer object data. No GL error is generated if the pointer is used to modify
32 a mapping which excludes this flag, but the result is undefined and system
33 errors (possibly including program termination) may occur.
34 </p></li></ul></div><p>
35 </p><p>
36 Furthermore, the following <span class="emphasis"><em>optional</em></span> flag bits in <em class="parameter"><code>access</code></em> may be used to modify the mapping:
37 </p><div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p>
38 <code class="constant">GL_MAP_INVALIDATE_RANGE_BIT</code> indicates that the previous contents of the
39 specified range may be discarded. Data within this range are undefined with
40 the exception of subsequently written data. No GL error is generated if sub-
41 sequent GL operations access unwritten data, but the result is undefined and
42 system errors (possibly including program termination) may occur. This flag
43 may not be used in combination with <code class="constant">GL_MAP_READ_BIT</code>.
44 </p></li><li class="listitem"><p>
45 <code class="constant">GL_MAP_INVALIDATE_BUFFER_BIT</code> indicates that the previous contents of the
46 entire buffer may be discarded. Data within the entire buffer are undefined
47 with the exception of subsequently written data. No GL error is generated if
48 subsequent GL operations access unwritten data, but the result is undefined
49 and system errors (possibly including program termination) may occur. This
50 flag may not be used in combination with <code class="constant">GL_MAP_READ_BIT</code>.
51 </p></li><li class="listitem"><p>
52 <code class="constant">GL_MAP_FLUSH_EXPLICIT_BIT</code> indicates that one or more discrete subranges
53 of the mapping may be modified. When this flag is set, modifications to
54 each subrange must be explicitly flushed by calling <a class="citerefentry" href="glFlushMappedBufferRange.xml"><span class="citerefentry"><span class="refentrytitle">glFlushMappedBufferRange</span></span></a>.
55 No GL error is set if a subrange of the mapping is modified and
56 not flushed, but data within the corresponding subrange of the buffer are undefined.
57 This flag may only be used in conjunction with <code class="constant">GL_MAP_WRITE_BIT</code>.
58 When this option is selected, flushing is strictly limited to regions that are
59 explicitly indicated with calls to <a class="citerefentry" href="glFlushMappedBufferRange.xml"><span class="citerefentry"><span class="refentrytitle">glFlushMappedBufferRange</span></span></a>
60 prior to unmap; if this option is not selected <a class="citerefentry" href="glUnmapBuffer.xml"><span class="citerefentry"><span class="refentrytitle">glUnmapBuffer</span></span></a>
61 will automatically flush the entire mapped range when called.
62 </p></li><li class="listitem"><p>
63 <code class="constant">GL_MAP_UNSYNCHRONIZED_BIT</code> indicates that the GL should not attempt to
64 synchronize pending operations on the buffer prior to returning from <code class="function">glMapBufferRange</code>.
65 No GL error is generated if pending operations which source or modify the buffer overlap the mapped region,
66 but the result of such previous and any subsequent operations is undefined.
67 </p></li></ul></div><p>
68 </p><p>
69 If an error occurs, <code class="function">glMapBufferRange</code> returns a <code class="code">NULL</code> pointer.
70 </p></div><div class="refsect1" title="Errors"><a id="errors"></a><h2>Errors</h2><p>
71 <code class="constant">GL_INVALID_VALUE</code> is generated if either of <em class="parameter"><code>offset</code></em> or <em class="parameter"><code>length</code></em> is negative,
72 or if <em class="parameter"><code>offset</code></em> + <em class="parameter"><code>length</code></em> is greater than the value of <code class="constant">GL_BUFFER_SIZE</code>.
73 </p><p>
74 <code class="constant">GL_INVALID_VALUE</code> is generated if <em class="parameter"><code>access</code></em> has any bits set other than those defined above.
75 </p><p>
76 <code class="constant">GL_INVALID_OPERATION</code> is generated for any of the following conditions:
77 </p><div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem"><p>
78 The buffer is already in a mapped state.
79 </p></li><li class="listitem"><p>
80 Neither <code class="constant">GL_MAP_READ_BIT</code> or <code class="constant">GL_MAP_WRITE_BIT</code> is set.
81 </p></li><li class="listitem"><p>
82 <code class="constant">GL_MAP_READ_BIT</code> is set and any of <code class="constant">GL_MAP_INVALIDATE_RANGE_BIT</code>,
83 <code class="constant">GL_MAP_INVALIDATE_BUFFER_BIT</code>, or <code class="constant">GL_MAP_UNSYNCHRONIZED_BIT</code> is set.
84 </p></li><li class="listitem"><p>
85 <code class="constant">GL_MAP_FLUSH_EXPLICIT_BIT</code> is set and <code class="constant">GL_MAP_WRITE_BIT</code> is not set.
86 </p></li></ul></div><p>
87 </p><p>
88 <code class="constant">GL_OUT_OF_MEMORY</code> is generated if <code class="function">glMapBufferRange</code> fails because memory for the
89 mapping could not be obtained.
90 </p></div><div class="refsect1" title="See Also"><a id="seealso"></a><h2>See Also</h2><p>
91 <a class="citerefentry" href="glMapBuffer.xml"><span class="citerefentry"><span class="refentrytitle">glMapBuffer</span></span></a>,
92 <a class="citerefentry" href="glFlushMappedBufferRange.xml"><span class="citerefentry"><span class="refentrytitle">glFlushMappedBufferRange</span></span></a>,
93 <a class="citerefentry" href="glBindBuffer.xml"><span class="citerefentry"><span class="refentrytitle">glBindBuffer</span></span></a>
94 </p></div><div class="refsect1" title="Copyright"><a id="Copyright"></a><h2>Copyright</h2><p>
95 Copyright <span class="trademark"></span>© 2010 Khronos Group.
96 This material may be distributed subject to the terms and conditions set forth in
97 the Open Publication License, v 1.0, 8 June 1999.
98 <a class="ulink" href="http://opencontent.org/openpub/" target="_top">http://opencontent.org/openpub/</a>.
99 </p></div></div></body></html>