Struct vulkano::instance::InstanceExtensions [] [src]

pub struct InstanceExtensions {
    pub khr_surface: bool,
    pub khr_display: bool,
    pub khr_xlib_surface: bool,
    pub khr_xcb_surface: bool,
    pub khr_wayland_surface: bool,
    pub khr_mir_surface: bool,
    pub khr_android_surface: bool,
    pub khr_win32_surface: bool,
    pub ext_debug_report: bool,
}

List of extensions that are enabled or available.

Fields

Methods

impl InstanceExtensions
[src]

Returns an Extensions object with all members set to false.

Builds a Vec containing the list of extensions.

Returns the intersection of this list and another list.

impl InstanceExtensions
[src]

See the docs of supported_by_core().

Returns an Extensions object with extensions supported by the core driver.

Trait Implementations

impl Debug for InstanceExtensions
[src]

Formats the value using the given formatter.

impl Copy for InstanceExtensions
[src]

impl Clone for InstanceExtensions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for InstanceExtensions
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for InstanceExtensions
[src]