1WAFFLE_GLX(3) Waffle Manual WAFFLE_GLX(3)
2
3
4
6 waffle_glx, waffle_glx_display, waffle_glx_config, waffle_glx_context,
7 waffle_glx_window - Containers for underlying native GLX objects
8
10 #include <waffle_glx.h>
11
12 struct waffle_glx_display {
13 Display *xlib_display;
14 };
15
16 struct waffle_glx_config {
17 Display *xlib_display;
18 GLXFBConfig glx_fbconfig;
19 };
20
21 struct waffle_glx_context {
22 Display *xlib_display;
23 GLXContext glx_context;
24 };
25
26 struct waffle_glx_window {
27 Display *xlib_display;
28 XID xlib_window;
29 };
30
31
33 Please report bugs or and feature requests to
34 https://gitlab.freedesktop.org/mesa/waffle/issues.
35
37 waffle(7), waffle_native(3)
38
40 Chad Versace <chad.versace@linux.intel.com>
41 Maintainer
42
44 Copyright © 2013 Intel
45
46 This manual page is licensed under the Creative Commons
47 Attribution-ShareAlike 3.0 United States License (CC BY-SA 3.0). To
48 view a copy of this license, visit
49 http://creativecommons.org.license/by-sa/3.0/us.
50
51
52
53
54waffle 04/01/2020 WAFFLE_GLX(3)