blob: 30ace395a6b9554f06789f5d0c520701ca287044 (
plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
|
<refentry xmlns="http://docbook.org/ns/docbook" version="5.0" xml:base="" xml:id="eglQueryContext">
<info>
<copyright>
<year>2003-2014</year>
<holder>The Khronos Group Inc.</holder>
</copyright>
</info>
<refmeta>
<refentrytitle>eglQueryContext</refentrytitle>
<manvolnum>3G</manvolnum>
</refmeta>
<refnamediv>
<refname>eglQueryContext</refname>
<refpurpose>
return <acronym>EGL</acronym> rendering context information
</refpurpose>
</refnamediv>
<refsynopsisdiv>
<title>C Specification</title>
<funcsynopsis>
<funcprototype>
<funcdef>EGLBoolean <function>eglQueryContext</function></funcdef>
<paramdef>EGLDisplay <parameter>display</parameter></paramdef>
<paramdef>EGLContext <parameter>context</parameter></paramdef>
<paramdef>EGLint <parameter>attribute</parameter></paramdef>
<paramdef>EGLint * <parameter>value</parameter></paramdef>
</funcprototype>
</funcsynopsis>
</refsynopsisdiv>
<refsect1 xml:id="parameters"><title>Parameters</title>
<variablelist>
<varlistentry>
<term><parameter>display</parameter></term>
<listitem>
<para>
Specifies the EGL display connection.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>context</parameter></term>
<listitem>
<para>
Specifies the EGL rendering context to query.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>attribute</parameter></term>
<listitem>
<para>
Specifies the EGL rendering context attribute to be returned.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>value</parameter></term>
<listitem>
<para>
Returns the requested value.
</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1 xml:id="description"><title>Description</title>
<para>
<function>eglQueryContext</function> returns in
<parameter>value</parameter> the value of
<parameter>attribute</parameter> for <parameter>context</parameter>.
<parameter>attribute</parameter> can be one of the following:
</para>
<variablelist>
<varlistentry>
<term><constant>EGL_CONFIG_ID</constant></term>
<listitem><para>
Returns the ID of the EGL frame buffer configuration
with respect to which the context was created.
</para></listitem>
</varlistentry>
<varlistentry>
<term><constant>EGL_CONTEXT_CLIENT_TYPE</constant></term>
<listitem><para>
Returns the type of client API which the context
supports (one of
<constant>EGL_OPENGL_API</constant>,
<constant>EGL_OPENGL_ES_API</constant>, or
<constant>EGL_OPENVG_API</constant>).
</para></listitem>
</varlistentry>
<varlistentry>
<term><constant>EGL_CONTEXT_CLIENT_VERSION</constant></term>
<listitem><para>
Returns the version of the client API which the
context supports, as specified at context creation
time. The resulting value is only meaningful for an
OpenGL ES context.
</para></listitem>
</varlistentry>
<varlistentry>
<term><constant>EGL_RENDER_BUFFER</constant></term>
<listitem>
<para>
Returns the buffer which client API rendering
via the context will use. The value returned
depends on properties of both the context, and
the surface to which the context is bound:
</para>
<itemizedlist>
<listitem><para>
If the context is bound to a pixmap surface,
then <constant>EGL_SINGLE_BUFFER</constant> will
be returned.
</para></listitem>
<listitem><para>
If the context is bound to a pbuffer surface,
then <constant>EGL_BACK_BUFFER</constant> will
be returned.
</para></listitem>
<listitem><para>
If the context is bound to a window surface,
then either <constant>EGL_BACK_BUFFER</constant>
or <constant>EGL_SINGLE_BUFFER</constant> may be
returned. The value returned depends on both the
buffer requested by the setting of the
<constant>EGL_RENDER_BUFFER</constant> property
of the surface (which may be queried by calling
<function>eglQuerySurface</function>), and on
the client API (not all client APIs support
single-buffer rendering to window surfaces).
</para></listitem>
<listitem><para>
If the context is not bound to a surface, such
as an OpenGL ES context bound to a framebuffer
object, then <constant>EGL_NONE</constant> will
be returned.
</para></listitem>
</itemizedlist>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1 xml:id="notes"><title>Notes</title>
<para>
Attributes <constant>EGL_CONTEXT_CLIENT_TYPE</constant> and
<constant>EGL_RENDER_BUFFER</constant> are supported only if
the EGL version is 1.2 or greater.
</para>
<para>
Attribute <constant>EGL_CONTEXT_CLIENT_VERSION</constant> is
supported only if the EGL version is 1.3 or greater.
</para>
</refsect1>
<refsect1 xml:id="errors"><title>Errors</title>
<para>
<constant>EGL_FALSE</constant> is returned on failure,
<constant>EGL_TRUE</constant> otherwise.
<parameter>value</parameter> is not modified when
<constant>EGL_FALSE</constant> is returned.
</para>
<para>
<constant>EGL_BAD_DISPLAY</constant> is generated if
<parameter>display</parameter> is not an EGL display connection.
</para>
<para>
<constant>EGL_NOT_INITIALIZED</constant> is generated if
<parameter>display</parameter> has not been initialized.
</para>
<para>
<constant>EGL_BAD_CONTEXT</constant> is generated if
<parameter>context</parameter> is not an EGL rendering context.
</para>
<para>
<constant>EGL_BAD_ATTRIBUTE</constant> is generated if
<parameter>attribute</parameter> is not a valid context attribute.
</para>
</refsect1>
<refsect1 xml:id="seealso"><title>See Also</title>
<para>
<citerefentry><refentrytitle>eglCreateContext</refentrytitle></citerefentry>
</para>
</refsect1>
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="copyright.xml"/>
</refentry>
|