1WAFFLE_WAYLAND(3) Waffle Manual WAFFLE_WAYLAND(3)
2
3
4
6 waffle_wayland, waffle_wayland_display, waffle_wayland_config,
7 waffle_wayland_context, waffle_wayland_window - Containers for
8 underlying native Wayland objects
9
11 #include <waffle_wayland.h>
12
13 struct waffle_wayland_display {
14 struct wl_display *wl_display;
15 struct wl_compositor *wl_compositor;
16 struct wl_shell *wl_shell;
17 EGLDisplay egl_display;
18 };
19
20 struct waffle_wayland_config {
21 struct waffle_wayland_display display;
22 EGLConfig egl_config;
23 };
24
25 struct waffle_wayland_context {
26 struct waffle_wayland_display display;
27 EGLContext egl_context;
28 };
29
30 struct waffle_wayland_window {
31 struct waffle_wayland_display display;
32 struct wl_surface *wl_surface;
33 struct wl_shell_surface *wl_shell_surface;
34 struct wl_egl_window *wl_window;
35 EGLSurface egl_surface;
36 };
37
38
40 Please report bugs or and feature requests to
41 https://gitlab.freedesktop.org/mesa/waffle/issues.
42
44 waffle(7), waffle_native(3)
45
47 Chad Versace <chad.versace@linux.intel.com>
48 Maintainer
49
51 Copyright © 2013 Intel
52
53 This manual page is licensed under the Creative Commons
54 Attribution-ShareAlike 3.0 United States License (CC BY-SA 3.0). To
55 view a copy of this license, visit
56 http://creativecommons.org.license/by-sa/3.0/us.
57
58
59
60
61waffle 07/29/2020 WAFFLE_WAYLAND(3)