forked from BSVino/docs.gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
glFlush.xhtml
29 lines (29 loc) · 2.56 KB
/
glFlush.xhtml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<div class="refentry" title="glFlush"><a id="glFlush"></a><div class="titlepage"></div><div class="refnamediv"><h2>Name</h2><p>glFlush — force execution of GL commands in finite time</p></div><div class="refsynopsisdiv" title="C Specification"><h2>C Specification</h2><div class="funcsynopsis"><table class="funcprototype-table"><tr><td><code class="funcdef">void <b class="fsfunc">glFlush</b>(</code></td><td> <var class="pdparam">void</var><code>)</code>;</td></tr></table><div class="funcprototype-spacer"> </div></div></div><div class="refsect1" title="Description"><a id="description"></a><h2>Description</h2><p>
Different GL implementations buffer commands in several different locations,
including network buffers and the graphics accelerator itself.
<code class="function">glFlush</code> empties all of these buffers,
causing all issued commands to be executed as quickly as
they are accepted by the actual rendering engine.
Though this execution may not be completed in any particular
time period,
it does complete in finite time.
</p><p>
Because any GL program might be executed over a network,
or on an accelerator that buffers commands,
all programs should call <code class="function">glFlush</code> whenever they count on having
all of their previously issued commands completed.
For example,
call <code class="function">glFlush</code> before waiting for user input that depends on
the generated image.
</p></div><div class="refsect1" title="Notes"><a id="notes"></a><h2>Notes</h2><p>
<code class="function">glFlush</code> can return at any time.
It does not wait until the execution of all previously
issued GL commands is complete.
</p></div><div class="refsect1" title="See Also"><a id="seealso"></a><h2>See Also</h2><p>
<a class="citerefentry" href="glFinish"><span class="citerefentry"><span class="refentrytitle">glFinish</span></span></a>
</p></div><div class="refsect1" title="Copyright"><div id="Copyright"><h2>Copyright</h2><p>
Copyright © 1991-2006
Silicon Graphics, Inc. This document is licensed under the SGI
Free Software B License. For details, see
<a class="ulink" href="https://web.archive.org/web/20171022161616/http://oss.sgi.com/projects/FreeB/" target="_top">https://web.archive.org/web/20171022161616/http://oss.sgi.com/projects/FreeB/</a>.
</p></div></div></div>