[][src]Struct ash::Instance

pub struct Instance { /* fields omitted */ }

Methods

impl Instance
[src]

pub unsafe fn load(static_fn: &StaticFn, instance: Instance) -> Self
[src]

Trait Implementations

impl InstanceV1_1 for Instance
[src]

unsafe fn enumerate_physical_device_groups_len(&self) -> usize
[src]

fn enumerate_physical_device_groups(
    &self,
    out: &mut [PhysicalDeviceGroupProperties]
) -> VkResult<()>
[src]

unsafe fn get_physical_device_properties2(
    &self,
    physical_device: PhysicalDevice,
    prop: &mut PhysicalDeviceProperties2
)
[src]

unsafe fn get_physical_device_format_properties2(
    &self,
    physical_device: PhysicalDevice,
    format: Format,
    out: &mut FormatProperties2
)
[src]

unsafe fn get_physical_device_image_format_properties2(
    &self,
    physical_device: PhysicalDevice,
    format_info: &PhysicalDeviceImageFormatInfo2,
    image_format_prop: &mut ImageFormatProperties2
) -> VkResult<()>
[src]

unsafe fn get_physical_device_queue_family_properties2_len(
    &self,
    physical_device: PhysicalDevice
) -> usize
[src]

unsafe fn get_physical_device_queue_family_properties2(
    &self,
    physical_device: PhysicalDevice,
    queue_family_props: &mut [QueueFamilyProperties2]
)
[src]

unsafe fn get_physical_device_memory_properties2(
    &self,
    physical_device: PhysicalDevice,
    out: &mut PhysicalDeviceMemoryProperties2
)
[src]

unsafe fn get_physical_device_sparse_image_format_properties2_len(
    &self,
    physical_device: PhysicalDevice,
    format_info: &PhysicalDeviceSparseImageFormatInfo2
) -> usize
[src]

unsafe fn get_physical_device_sparse_image_format_properties2(
    &self,
    physical_device: PhysicalDevice,
    format_info: &PhysicalDeviceSparseImageFormatInfo2,
    out: &mut [SparseImageFormatProperties2]
)
[src]

unsafe fn get_physical_device_external_buffer_properties(
    &self,
    physical_device: PhysicalDevice,
    external_buffer_info: &PhysicalDeviceExternalBufferInfo,
    out: &mut ExternalBufferProperties
)
[src]

unsafe fn get_physical_device_external_fence_properties(
    &self,
    physical_device: PhysicalDevice,
    external_fence_info: &PhysicalDeviceExternalFenceInfo,
    out: &mut ExternalFenceProperties
)
[src]

unsafe fn get_physical_device_external_semaphore_properties(
    &self,
    physical_device: PhysicalDevice,
    external_semaphore_info: &PhysicalDeviceExternalSemaphoreInfo,
    out: &mut ExternalSemaphoreProperties
)
[src]

impl InstanceV1_0 for Instance
[src]

type Device = Device

unsafe fn get_device_proc_addr(
    &self,
    device: Device,
    p_name: *const c_char
) -> PFN_vkVoidFunction
[src]

unsafe fn destroy_instance(
    &self,
    allocation_callbacks: Option<&AllocationCallbacks>
)
[src]

unsafe fn get_physical_device_format_properties(
    &self,
    physical_device: PhysicalDevice,
    format: Format
) -> FormatProperties
[src]

unsafe fn get_physical_device_image_format_properties(
    &self,
    physical_device: PhysicalDevice,
    format: Format,
    typ: ImageType,
    tiling: ImageTiling,
    usage: ImageUsageFlags,
    flags: ImageCreateFlags
) -> VkResult<ImageFormatProperties>
[src]

unsafe fn get_physical_device_memory_properties(
    &self,
    physical_device: PhysicalDevice
) -> PhysicalDeviceMemoryProperties
[src]

unsafe fn get_physical_device_properties(
    &self,
    physical_device: PhysicalDevice
) -> PhysicalDeviceProperties
[src]

unsafe fn get_physical_device_queue_family_properties(
    &self,
    physical_device: PhysicalDevice
) -> Vec<QueueFamilyProperties>
[src]

unsafe fn get_physical_device_features(
    &self,
    physical_device: PhysicalDevice
) -> PhysicalDeviceFeatures
[src]

unsafe fn enumerate_physical_devices(&self) -> VkResult<Vec<PhysicalDevice>>
[src]

unsafe fn enumerate_device_extension_properties(
    &self,
    device: PhysicalDevice
) -> Result<Vec<ExtensionProperties>, Result>
[src]

impl Clone for Instance
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Instance

impl Sync for Instance

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]