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,
    pub mvk_ios_surface: bool,
    pub mvk_macos_surface: bool,
    pub mvk_moltenvk: bool,
    pub nn_vi_surface: bool,
    pub ext_swapchain_colorspace: bool,
    pub khr_get_physical_device_properties2: bool,
    pub _unbuildable: Unbuildable,
}

List of extensions that are enabled or available.

Fields

This field ensures that an instance of this Extensions struct can only be created through Vulkano functions and the update syntax. This way, extensions can be added to Vulkano without breaking existing code.

Methods

impl InstanceExtensions
[src]

Returns an Extensions object with all members set to false.

Returns the intersection of this list and another list.

Returns the difference of another list from this list.

impl InstanceExtensions
[src]

See the docs of supported_by_core().

See the docs of supported_by_core().

Returns a RawExtensions object with extensions supported by the core driver.

Same as supported_by_core, but allows specifying a loader.

Trait Implementations

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]

impl Debug for InstanceExtensions
[src]

Formats the value using the given formatter. Read more

impl<'a> From<&'a InstanceExtensions> for RawInstanceExtensions
[src]

Performs the conversion.

impl<'a> From<&'a RawInstanceExtensions> for InstanceExtensions
[src]

Performs the conversion.

Auto Trait Implementations