[][src]Trait vulkanalia::vk::KhrSurfaceExtension

pub trait KhrSurfaceExtension: InstanceV1_0 {
    fn destroy_surface_khr(
        &self,
        surface: SurfaceKHR,
        allocator: Option<&AllocationCallbacks>
    ) { ... }
fn get_physical_device_surface_capabilities_khr(
        &self,
        physical_device: PhysicalDevice,
        surface: SurfaceKHR
    ) -> VkResult<SurfaceCapabilitiesKHR> { ... }
fn get_physical_device_surface_formats_khr(
        &self,
        physical_device: PhysicalDevice,
        surface: SurfaceKHR
    ) -> VkResult<Vec<SurfaceFormatKHR>> { ... }
fn get_physical_device_surface_present_modes_khr(
        &self,
        physical_device: PhysicalDevice,
        surface: SurfaceKHR
    ) -> VkResult<Vec<PresentModeKHR>> { ... }
fn get_physical_device_surface_support_khr(
        &self,
        physical_device: PhysicalDevice,
        queue_family_index: u32,
        surface: SurfaceKHR
    ) -> VkResult<bool> { ... } }

Provided methods

Loading content...

Implementors

impl KhrSurfaceExtension for Instance[src]

Loading content...