pub trait GetDisplayExtensions: Sealed {
    // Required method
    fn extensions(&self) -> &HashSet<&'static str>;
}
Expand description

Obtain the underlying api extensions.

Required Methods§

source

fn extensions(&self) -> &HashSet<&'static str>

Supported extensions by the display.

Api-specific

WGL: - To have extensions loaded, raw_window_handle must be used when creating display.

Implementors§

source§

impl GetDisplayExtensions for Display

Available on egl_backend only.