Trait glutin::os::unix::WindowExt

source ·
pub trait WindowExt {
    // Required methods
    fn get_xlib_window(&self) -> Option<*mut c_void>;
    fn get_xlib_display(&self) -> Option<*mut c_void>;
}
Expand description

Additional methods on Window that are specific to Unix.

Required Methods§

source

fn get_xlib_window(&self) -> Option<*mut c_void>

Returns a pointer to the Window object of xlib that is used by this window.

Returns None if the window doesn’t use xlib (if it uses wayland for example).

The pointer will become invalid when the glutin Window is destroyed.

source

fn get_xlib_display(&self) -> Option<*mut c_void>

Returns a pointer to the Display object of xlib that is used by this window.

Returns None if the window doesn’t use xlib (if it uses wayland for example).

The pointer will become invalid when the glutin Window is destroyed.

Implementors§