2 <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
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.
14 xmlns:xi="http://www.w3.org/2001/XInclude">
16 <!-- See http://www.docbook.org/tdg/en/html/refentry.html. -->
19 <refentrytitle>waffle_gbm</refentrytitle>
20 <manvolnum>3</manvolnum>
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>
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"/>
42 <synopsis language="C">
43 #include <waffle_gbm.h>
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;
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;
68 <xi:include href="common/issues.xml"/>
71 <title>See Also</title>
73 <citerefentry><refentrytitle>waffle</refentrytitle><manvolnum>7</manvolnum></citerefentry>,
74 <citerefentry><refentrytitle>waffle_native</refentrytitle><manvolnum>3</manvolnum></citerefentry>
81 vim:tw=120 et ts=2 sw=2: