Man page - waffle_wayland(3)
Packages contas this manual
- waffle_x11_egl(3)
- waffle_native_context(3)
- waffle_wayland_config(3)
- waffle_x11_egl_context(3)
- waffle_error_get_info(3)
- waffle_dl_sym(3)
- waffle_glx_window(3)
- waffle_display_connect(3)
- waffle_error_get_code(3)
- waffle_attrib_list_length(3)
- waffle_get_proc_address(3)
- waffle_wayland(3)
- waffle_gbm_config(3)
- waffle_enum(3)
- waffle_dl(3)
- waffle(7)
- waffle_window_destroy(3)
- waffle_context_get_native(3)
- waffle_glx_config(3)
- waffle_x11_egl_window(3)
- waffle_native_display(3)
- waffle_error(3)
- waffle_attrib_list_get_with_default(3)
- waffle_enum_to_string(3)
- waffle_display_get_native(3)
- waffle_teardown(3)
- waffle_wayland_display(3)
- waffle_gbm_window(3)
- waffle_config_choose(3)
- waffle_native_config(3)
- waffle_glx_context(3)
- waffle_window_create(3)
- waffle_wayland_window(3)
- waffle_display_disconnect(3)
- waffle_get_current_display(3)
- waffle_window_show(3)
- waffle_gbm_context(3)
- waffle_feature_test_macros(7)
- waffle_context(3)
- waffle_gbm(3)
- waffle_dl_can_open(3)
- waffle_x11_egl_display(3)
- waffle_window_swap_buffers(3)
- waffle_make_current(3)
- waffle_context_create(3)
- waffle_native(3)
- waffle_display(3)
- waffle_attrib_list(3)
- waffle_attrib_list_update(3)
- waffle_error_to_string(3)
- waffle_window(3)
- waffle_display_supports_context_api(3)
- waffle_wayland_context(3)
- waffle_config(3)
- waffle_is_extension_in_string(3)
- waffle_context_destroy(3)
- waffle_attrib_list_get(3)
- waffle_config_destroy(3)
- waffle_x11_egl_config(3)
- waffle_window_get_native(3)
- waffle_glx_display(3)
- waffle_config_get_native(3)
- waffle_glx(3)
- waffle_gbm_display(3)
- waffle_native_window(3)
- waffle_init(3)
- waffle_get_current_context(3)
- waffle_get_current_window(3)
Package: libwaffle-doc
apt-get install libwaffle-doc
apt-get install libwaffle-doc
Manuals in package:
Documentations in package:
Manual
| WAFFLE_WAYLAND(3) | Waffle Manual | WAFFLE_WAYLAND(3) |
NAME
waffle_wayland, waffle_wayland_display, waffle_wayland_config, waffle_wayland_context, waffle_wayland_window - Containers for underlying native Wayland objects
SYNOPSIS
#include <waffle_wayland.h>
struct waffle_wayland_display {
struct wl_display *wl_display;
struct wl_compositor *wl_compositor;
// DEPRECATED: wl_shell will be NULL when compositor does not support the
// old wl_shell protocol
struct wl_shell *wl_shell;
EGLDisplay egl_display;
// xdg_shell introduced with 1.7. Will be NULL when compositor does not
// support the new xdg-shell protocol
struct xdg_wm_base *xdg_shell;
};
struct waffle_wayland_config {
struct waffle_wayland_display display;
EGLConfig egl_config;
};
struct waffle_wayland_context {
struct waffle_wayland_display display;
EGLContext egl_context;
};
struct waffle_wayland_window {
struct waffle_wayland_display display;
struct wl_surface *wl_surface;
// DEPRECATED: wl_shell_surface will be NULL when compositor does not
// support the old wl_shell protocol
struct wl_shell_surface *wl_shell_surface;
struct wl_egl_window *wl_window;
EGLSurface egl_surface;
// xdg_surface and xdg_toplevel introduced with 1.7. Will be NULL when
// compositor does not support the new xdg-shell protocol
struct xdg_surface *xdg_surface;
struct xdg_toplevel *xdg_toplevel;
};
ISSUES
Please report bugs or and feature requests to https://gitlab.freedesktop.org/mesa/waffle/issues.
SEE ALSO
waffle(7), waffle_native(3)
AUTHOR
Chad Versace <chad.versace@linux.intel.com>
Former maintainer
COPYRIGHT
Copyright © 2013 Intel
This manual page is licensed under the Creative Commons Attribution-ShareAlike 3.0 United States License (CC BY-SA 3.0). To view a copy of this license, visit http://creativecommons.org.license/by-sa/3.0/us.
| 08/09/2024 | waffle |