glx: remove dl_can_open() logic from supports_api()
[mesa-waffle.git] / man / waffle_gbm.3.xml
blob2478b40d0fc923ed2cc92c176f594034807af10d
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_gbm"
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_gbm</refentrytitle>
20     <manvolnum>3</manvolnum>
21   </refmeta>
23   <refnamediv>
24     <refname>waffle_gbm</refname>
25     <refname>waffle_gbm_display</refname>
26     <refname>waffle_gbm_config</refname>
27     <refname>waffle_gbm_context</refname>
28     <refname>waffle_gbm_window</refname>
29     <refpurpose>Containers for underlying native GBM 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_gbm.h&gt;
45 struct waffle_gbm_display {
46     struct gbm_device *gbm_device;
47     EGLDisplay egl_display;
50 struct waffle_gbm_config {
51     struct waffle_gbm_display display;
52     EGLConfig egl_config;
55 struct waffle_gbm_context {
56     struct waffle_gbm_display display;
57     EGLContext egl_context;
60 struct waffle_gbm_window {
61     struct waffle_gbm_display display;
62     struct gbm_surface *gbm_surface;
63     EGLSurface egl_surface;
65     </synopsis>
66   </refsynopsisdiv>
68   <xi:include href="common/issues.xml"/>
70   <refsect1>
71     <title>See Also</title>
72     <para>
73       <citerefentry><refentrytitle>waffle</refentrytitle><manvolnum>7</manvolnum></citerefentry>,
74       <citerefentry><refentrytitle>waffle_native</refentrytitle><manvolnum>3</manvolnum></citerefentry>
75     </para>
76   </refsect1>
78 </refentry>
80 <!--
81 vim:tw=120 et ts=2 sw=2:
82 -->