rename upstream-man-pages to upstream-doc
[clinton/guile-figl.git] / upstream-doc / man4 / xhtml / glBeginQuery.xml
CommitLineData
7faf1d71
AW
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>glBeginQuery - OpenGL 4 Reference Pages</title><meta name="generator" content="DocBook XSL Stylesheets V1.69.1" /></head><body><div class="refentry" lang="en" xml:lang="en"><a id="glBeginQuery"></a><div class="titlepage"></div><div class="refnamediv"><h2>Name</h2><p>glBeginQuery — delimit the boundaries of a query object</p></div><div class="refsynopsisdiv"><h2>C Specification</h2><div class="funcsynopsis"><p><code class="funcdef">void <b class="fsfunc">glBeginQuery</b>(</code>GLenum <var class="pdparam">target</var>, GLuint <var class="pdparam">id</var><code>)</code>;</p></div></div><div class="refsect1" lang="en" xml:lang="en"><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 the target type of query object established between
6 <code class="function">glBeginQuery</code> and the subsequent <a href="glEndQuery.xml"><span class="citerefentry"><span class="refentrytitle">glEndQuery</span></span></a>.
7 The symbolic constant must be one of <code class="constant">GL_SAMPLES_PASSED</code>, <code class="constant">GL_ANY_SAMPLES_PASSED</code>,
8 <code class="constant">GL_ANY_SAMPLES_PASSED_CONSERVATIVE</code>,
9 <code class="constant">GL_PRIMITIVES_GENERATED</code>, <code class="constant">GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN</code>, or
10 <code class="constant">GL_TIME_ELAPSED</code>.
11 </p></dd><dt><span class="term"><em class="parameter"><code>id</code></em></span></dt><dd><p>
12 Specifies the name of a query object.
13 </p></dd></dl></div></div><div class="refsynopsisdiv"><h2>C Specification</h2><div class="funcsynopsis"><p><code class="funcdef">void <b class="fsfunc">glEndQuery</b>(</code>GLenum <var class="pdparam">target</var><code>)</code>;</p></div></div><div class="refsect1" lang="en" xml:lang="en"><a id="parameters2"></a><h2>Parameters</h2><div class="variablelist"><dl><dt><span class="term"><em class="parameter"><code>target</code></em></span></dt><dd><p>
14 Specifies the target type of query object to be concluded.
15 The symbolic constant must be one of <code class="constant">GL_SAMPLES_PASSED</code>, <code class="constant">GL_ANY_SAMPLES_PASSED</code>,
16 <code class="constant">GL_ANY_SAMPLES_PASSED_CONSERVATIVE</code>,
17 <code class="constant">GL_PRIMITIVES_GENERATED</code>, <code class="constant">GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN</code>, or
18 <code class="constant">GL_TIME_ELAPSED</code>.
19 </p></dd></dl></div></div><div class="refsect1" lang="en" xml:lang="en"><a id="description"></a><h2>Description</h2><p>
20 <code class="function">glBeginQuery</code> and <a href="glEndQuery.xml"><span class="citerefentry"><span class="refentrytitle">glEndQuery</span></span></a> delimit the
21 boundaries of a query object. <em class="parameter"><code>query</code></em> must be a name previously returned from a call to
22 <a href="glGenQueries.xml"><span class="citerefentry"><span class="refentrytitle">glGenQueries</span></span></a>. If a query object with name <em class="parameter"><code>id</code></em>
23 does not yet exist it is created with the type determined by <em class="parameter"><code>target</code></em>. <em class="parameter"><code>target</code></em> must
24 be one of <code class="constant">GL_SAMPLES_PASSED</code>, <code class="constant">GL_ANY_SAMPLES_PASSED</code>, <code class="constant">GL_PRIMITIVES_GENERATED</code>,
25 <code class="constant">GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN</code>, or <code class="constant">GL_TIME_ELAPSED</code>. The behavior of the query
26 object depends on its type and is as follows.
27 </p><p>
28 If <em class="parameter"><code>target</code></em> is <code class="constant">GL_SAMPLES_PASSED</code>, <em class="parameter"><code>id</code></em> must be an unused name,
29 or the name of an existing occlusion query object.
30 When <code class="function">glBeginQuery</code> is executed, the query object's samples-passed counter is reset to 0. Subsequent
31 rendering will increment the counter for every sample that passes the depth test. If the value of <code class="constant">GL_SAMPLE_BUFFERS</code>
32 is 0, then the samples-passed count is incremented by 1 for each fragment. If the value of <code class="constant">GL_SAMPLE_BUFFERS</code>
33 is 1, then the samples-passed count is incremented by the number of samples whose coverage bit is set. However, implementations, at their
34 discression may instead increase the samples-passed count by the value of <code class="constant">GL_SAMPLES</code> if any sample in the fragment
35 is covered. When <code class="function">glEndQuery</code>
36 is executed, the samples-passed counter is assigned to the query object's result value. This value can be queried by
37 calling <a href="glGetQueryObject.xml"><span class="citerefentry"><span class="refentrytitle">glGetQueryObject</span></span></a> with <em class="parameter"><code>pname</code></em>
38 <code class="constant">GL_QUERY_RESULT</code>.
39 </p><p>
40 If <em class="parameter"><code>target</code></em> is <code class="constant">GL_ANY_SAMPLES_PASSED</code> or <code class="constant">GL_ANY_SAMPLES_PASSED_CONSERVATIVE</code>,
41 <em class="parameter"><code>id</code></em> must be an unused name, or the name of an existing boolean occlusion query object.
42 When <code class="function">glBeginQuery</code> is executed, the query object's samples-passed flag is reset to <code class="constant">GL_FALSE</code>.
43 Subsequent rendering causes the flag to be set to <code class="constant">GL_TRUE</code> if any sample passes the depth test in the case of <code class="constant">GL_ANY_SAMPLES_PASSED</code>,
44 or if the implementation determines that any sample might pass the depth test in the case of <code class="constant">GL_ANY_SAMPLES_PASSED_CONSERVATIVE</code>.
45 The implementation may be able to provide a more efficient test in the case of <code class="constant">GL_ANY_SAMPLES_PASSED_CONSERVATIVE</code>
46 if some false positives are acceptable to the application. When
47 <code class="function">glEndQuery</code> is executed, the samples-passed flag is assigned to the query object's result value. This value can
48 be queried by calling <a href="glGetQueryObject.xml"><span class="citerefentry"><span class="refentrytitle">glGetQueryObject</span></span></a> with <em class="parameter"><code>pname</code></em>
49 <code class="constant">GL_QUERY_RESULT</code>.
50 </p><p>
51 If <em class="parameter"><code>target</code></em> is <code class="constant">GL_PRIMITIVES_GENERATED</code>, <em class="parameter"><code>id</code></em> must be an unused
52 name, or the name of an existing primitive query object previously bound to the <code class="constant">GL_PRIMITIVES_GENERATED</code> query binding.
53 When <code class="function">glBeginQuery</code> is executed, the query object's primitives-generated counter is reset to 0. Subsequent
54 rendering will increment the counter once for every vertex that is emitted from the geometry shader, or from the vertex shader if
55 no geometry shader is present. When <code class="function">glEndQuery</code> is executed, the primitives-generated counter is assigned to
56 the query object's result value. This value can be queried by calling <a href="glGetQueryObject.xml"><span class="citerefentry"><span class="refentrytitle">glGetQueryObject</span></span></a> with <em class="parameter"><code>pname</code></em>
57 <code class="constant">GL_QUERY_RESULT</code>.
58 </p><p>
59 If <em class="parameter"><code>target</code></em> is <code class="constant">GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN</code>, <em class="parameter"><code>id</code></em> must be
60 an unused name, or the name of an existing primitive query object previously bound to the <code class="constant">GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN</code>
61 query binding. When <code class="function">glBeginQuery</code> is executed, the query object's primitives-written counter is reset to 0. Subsequent
62 rendering will increment the counter once for every vertex that is written into the bound transform feedback buffer(s). If transform feedback
63 mode is not activated between the call to <code class="function">glBeginQuery</code> and <code class="function">glEndQuery</code>, the counter will not be
64 incremented. When <code class="function">glEndQuery</code> is executed, the primitives-written counter is assigned to
65 the query object's result value. This value can be queried by calling <a href="glGetQueryObject.xml"><span class="citerefentry"><span class="refentrytitle">glGetQueryObject</span></span></a> with <em class="parameter"><code>pname</code></em>
66 <code class="constant">GL_QUERY_RESULT</code>.
67 </p><p>
68 If <em class="parameter"><code>target</code></em> is <code class="constant">GL_TIME_ELAPSED</code>, <em class="parameter"><code>id</code></em> must be
69 an unused name, or the name of an existing timer query object previously bound to the <code class="constant">GL_TIME_ELAPSED</code>
70 query binding. When <code class="function">glBeginQuery</code> is executed, the query object's time counter is reset to 0. When <code class="function">glEndQuery</code>
71 is executed, the elapsed server time that has passed since the call to <code class="function">glBeginQuery</code> is written into the query object's
72 time counter. This value can be queried by calling <a href="glGetQueryObject.xml"><span class="citerefentry"><span class="refentrytitle">glGetQueryObject</span></span></a> with <em class="parameter"><code>pname</code></em>
73 <code class="constant">GL_QUERY_RESULT</code>.
74 </p><p>
75 Querying the <code class="constant">GL_QUERY_RESULT</code> implicitly flushes the GL pipeline until the rendering delimited by the
76 query object has completed and the result is available. <code class="constant">GL_QUERY_RESULT_AVAILABLE</code> can be queried to
77 determine if the result is immediately available or if the rendering is not yet complete.
78 </p></div><div class="refsect1" lang="en" xml:lang="en"><a id="notes"></a><h2>Notes</h2><p>
79 If the query target's count exceeds the maximum value representable in the number of available bits, as reported by
80 <a href="glGetQueryiv.xml"><span class="citerefentry"><span class="refentrytitle">glGetQueryiv</span></span></a> with <em class="parameter"><code>target</code></em> set to the
81 appropriate query target and <em class="parameter"><code>pname</code></em>
82 <code class="constant">GL_QUERY_COUNTER_BITS</code>, the count becomes undefined.
83 </p><p>
84 An implementation may support 0 bits in its counter, in which case query results are always undefined
85 and essentially useless.
86 </p><p>
87 When <code class="constant">GL_SAMPLE_BUFFERS</code> is 0, the samples-passed counter of an occlusion query will increment once for each
88 fragment that passes the depth test. When <code class="constant">GL_SAMPLE_BUFFERS</code> is 1, an implementation may either increment
89 the samples-passed counter individually for each sample of a fragment that passes the depth test, or it may choose to increment
90 the counter for all samples of a fragment if any one of them passes the depth test.
91 </p><p>
92 The query targets <code class="constant">GL_ANY_SAMPLES_PASSED</code>, and <code class="constant">GL_TIME_ELAPSED</code> are availale only if
93 the GL version is 3.3 or higher.
94 </p><p>
95 The query target <code class="constant">GL_ANY_SAMPLES_PASSED_CONSERVATIVE</code> is available only of the GL version is 4.3 or higher.
96 </p></div><div class="refsect1" lang="en" xml:lang="en"><a id="errors"></a><h2>Errors</h2><p>
97 <code class="constant">GL_INVALID_ENUM</code> is generated if <em class="parameter"><code>target</code></em> is not one of the accepted tokens.
98 </p><p>
99 <code class="constant">GL_INVALID_OPERATION</code> is generated if <code class="function">glBeginQuery</code> is executed while
100 a query object of the same <em class="parameter"><code>target</code></em> is already active.
101 </p><p>
102 <code class="constant">GL_INVALID_OPERATION</code> is generated if <a href="glEndQuery.xml"><span class="citerefentry"><span class="refentrytitle">glEndQuery</span></span></a>
103 is executed when a query object of the same <em class="parameter"><code>target</code></em> is not active.
104 </p><p>
105 <code class="constant">GL_INVALID_OPERATION</code> is generated if <em class="parameter"><code>id</code></em> is 0.
106 </p><p>
107 <code class="constant">GL_INVALID_OPERATION</code> is generated if <em class="parameter"><code>id</code></em> is the name of an already active query object.
108 </p><p>
109 <code class="constant">GL_INVALID_OPERATION</code> is generated if <em class="parameter"><code>id</code></em> refers to an existing query object whose type
110 does not does not match <em class="parameter"><code>target</code></em>.
111 </p></div><div class="refsect1" lang="en" xml:lang="en"><a id="seealso"></a><h2>See Also</h2><p>
112 <a href="glDeleteQueries.xml"><span class="citerefentry"><span class="refentrytitle">glDeleteQueries</span></span></a>,
113 <a href="glGenQueries.xml"><span class="citerefentry"><span class="refentrytitle">glGenQueries</span></span></a>,
114 <a href="glGetQueryiv.xml"><span class="citerefentry"><span class="refentrytitle">glGetQueryiv</span></span></a>,
115 <a href="glGetQueryObject.xml"><span class="citerefentry"><span class="refentrytitle">glGetQueryObject</span></span></a>,
116 <a href="glIsQuery.xml"><span class="citerefentry"><span class="refentrytitle">glIsQuery</span></span></a>
117 </p></div><div class="refsect1" lang="en" xml:lang="en"><a id="Copyright"></a><h2>Copyright</h2><p>
118 Copyright <span class="trademark"></span>© 2005 Addison-Wesley.
119 Copyright <span class="trademark"></span>© 2010-2012 Khronos Group.
120 This material may be distributed subject to the terms and conditions set forth in
121 the Open Publication License, v 1.0, 8 June 1999.
122 <a href="http://opencontent.org/openpub/" target="_top">http://opencontent.org/openpub/</a>.
123 </p></div></div></body></html>