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_x11_egl</refentrytitle>
20 <manvolnum>3</manvolnum>
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>
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_x11_egl.h>
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;
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;
63 EGLSurface egl_surface;
69 <title>See Also</title>
71 <citerefentry><refentrytitle>waffle</refentrytitle><manvolnum>7</manvolnum></citerefentry>,
72 <citerefentry><refentrytitle>waffle_native</refentrytitle><manvolnum>3</manvolnum></citerefentry>
79 vim:tw=120 et ts=2 sw=2: