Trait vulkanalia::vk::KhrDisplayExtension[][src]

pub trait KhrDisplayExtension: InstanceV1_0 {
    const METADATA: Extension;
    unsafe fn create_display_mode_khr(
        &self,
        physical_device: PhysicalDevice,
        display: DisplayKHR,
        create_info: &DisplayModeCreateInfoKHR,
        allocator: Option<&AllocationCallbacks>
    ) -> VkResult<DisplayModeKHR> { ... }
unsafe fn create_display_plane_surface_khr(
        &self,
        create_info: &DisplaySurfaceCreateInfoKHR,
        allocator: Option<&AllocationCallbacks>
    ) -> VkResult<SurfaceKHR> { ... }
unsafe fn get_display_mode_properties_khr(
        &self,
        physical_device: PhysicalDevice,
        display: DisplayKHR
    ) -> VkResult<Vec<DisplayModePropertiesKHR>> { ... }
unsafe fn get_display_plane_capabilities_khr(
        &self,
        physical_device: PhysicalDevice,
        mode: DisplayModeKHR,
        plane_index: u32
    ) -> VkResult<DisplayPlaneCapabilitiesKHR> { ... }
unsafe fn get_display_plane_supported_displays_khr(
        &self,
        physical_device: PhysicalDevice,
        plane_index: u32
    ) -> VkResult<Vec<DisplayKHR>> { ... }
unsafe fn get_physical_device_display_plane_properties_khr(
        &self,
        physical_device: PhysicalDevice
    ) -> VkResult<Vec<DisplayPlanePropertiesKHR>> { ... }
unsafe fn get_physical_device_display_properties_khr(
        &self,
        physical_device: PhysicalDevice
    ) -> VkResult<Vec<DisplayPropertiesKHR>> { ... } }

Associated Constants

const METADATA: Extension[src]

The metadata for this extension.

Loading content...

Provided methods

unsafe fn create_display_mode_khr(
    &self,
    physical_device: PhysicalDevice,
    display: DisplayKHR,
    create_info: &DisplayModeCreateInfoKHR,
    allocator: Option<&AllocationCallbacks>
) -> VkResult<DisplayModeKHR>
[src]

unsafe fn create_display_plane_surface_khr(
    &self,
    create_info: &DisplaySurfaceCreateInfoKHR,
    allocator: Option<&AllocationCallbacks>
) -> VkResult<SurfaceKHR>
[src]

unsafe fn get_display_mode_properties_khr(
    &self,
    physical_device: PhysicalDevice,
    display: DisplayKHR
) -> VkResult<Vec<DisplayModePropertiesKHR>>
[src]

unsafe fn get_display_plane_capabilities_khr(
    &self,
    physical_device: PhysicalDevice,
    mode: DisplayModeKHR,
    plane_index: u32
) -> VkResult<DisplayPlaneCapabilitiesKHR>
[src]

unsafe fn get_display_plane_supported_displays_khr(
    &self,
    physical_device: PhysicalDevice,
    plane_index: u32
) -> VkResult<Vec<DisplayKHR>>
[src]

unsafe fn get_physical_device_display_plane_properties_khr(
    &self,
    physical_device: PhysicalDevice
) -> VkResult<Vec<DisplayPlanePropertiesKHR>>
[src]

unsafe fn get_physical_device_display_properties_khr(
    &self,
    physical_device: PhysicalDevice
) -> VkResult<Vec<DisplayPropertiesKHR>>
[src]

Loading content...

Implementors

Loading content...