waffle_x11_egl - Man Page

Containers for underlying native X11/EGL objects

Synopsis

#include <waffle_x11_egl.h>

struct waffle_x11_egl_display {
    Display *xlib_display;
    EGLDisplay egl_display;
};

struct waffle_x11_egl_config {
    struct waffle_x11_egl_display display;
    EGLConfig egl_config;
};

struct waffle_x11_egl_context {
    struct waffle_x11_egl_display display;
    EGLContext egl_context;
};

struct waffle_x11_egl_window {
    struct waffle_x11_egl_display display;
    XID xlib_window;
    EGLSurface egl_surface;
};

See Also

waffle(7), waffle_native(3)

Author

Chad Versace <chad.versace@linux.intel.com>

Maintainer

Referenced By

waffle(7), waffle_native(3).

The man pages waffle_x11_egl_config(3), waffle_x11_egl_context(3), waffle_x11_egl_display(3) and waffle_x11_egl_window(3) are aliases of waffle_x11_egl(3).

01/27/2024 Waffle Manual