glx: remove dl_can_open() logic from supports_api()
[mesa-waffle.git] / man / waffle_x11_egl.3.xml
bloba150830755db11f44f9a30193fc7272d0946792a
1 <?xml version='1.0'?>
2 <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3   "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
5 <!--
6   Copyright Intel 2012
8   This manual page is licensed under the Creative Commons Attribution-ShareAlike 3.0 United States License (CC BY-SA 3.0
9   US). To view a copy of this license, visit http://creativecommons.org.license/by-sa/3.0/us.
10 -->
12 <refentry
13     id="waffle_x11_egl"
14     xmlns:xi="http://www.w3.org/2001/XInclude">
16   <!-- See http://www.docbook.org/tdg/en/html/refentry.html. -->
18   <refmeta>
19     <refentrytitle>waffle_x11_egl</refentrytitle>
20     <manvolnum>3</manvolnum>
21   </refmeta>
23   <refnamediv>
24     <refname>waffle_x11_egl</refname>
25     <refname>waffle_x11_egl_display</refname>
26     <refname>waffle_x11_egl_config</refname>
27     <refname>waffle_x11_egl_context</refname>
28     <refname>waffle_x11_egl_window</refname>
29     <refpurpose>Containers for underlying native X11/EGL objects</refpurpose>
30   </refnamediv>
32   <refentryinfo>
33     <title>Waffle Manual</title>
34     <productname>waffle</productname>
35     <xi:include href="common/author-chad.versace.xml"/>
36     <xi:include href="common/copyright.xml"/>
37     <xi:include href="common/legalnotice.xml"/>
38   </refentryinfo>
40   <refsynopsisdiv>
42     <synopsis language="C">
43 #include &lt;waffle_x11_egl.h&gt;
45 struct waffle_x11_egl_display {
46     Display *xlib_display;
47     EGLDisplay egl_display;
50 struct waffle_x11_egl_config {
51     struct waffle_x11_egl_display display;
52     EGLConfig egl_config;
55 struct waffle_x11_egl_context {
56     struct waffle_x11_egl_display display;
57     EGLContext egl_context;
60 struct waffle_x11_egl_window {
61     struct waffle_x11_egl_display display;
62     XID xlib_window;
63     EGLSurface egl_surface;
65     </synopsis>
66   </refsynopsisdiv>
68   <refsect1>
69     <title>See Also</title>
70     <para>
71       <citerefentry><refentrytitle>waffle</refentrytitle><manvolnum>7</manvolnum></citerefentry>,
72       <citerefentry><refentrytitle>waffle_native</refentrytitle><manvolnum>3</manvolnum></citerefentry>
73     </para>
74   </refsect1>
76 </refentry>
78 <!--
79 vim:tw=120 et ts=2 sw=2:
80 -->