Struct pilka_dyn::ash::vk::InstanceFnV1_1[]

pub struct InstanceFnV1_1 {
    pub enumerate_physical_device_groups: extern "system" fn(Instance, *mut u32, *mut PhysicalDeviceGroupProperties) -> Result,
    pub get_physical_device_features2: extern "system" fn(PhysicalDevice, *mut PhysicalDeviceFeatures2) -> c_void,
    pub get_physical_device_properties2: extern "system" fn(PhysicalDevice, *mut PhysicalDeviceProperties2) -> c_void,
    pub get_physical_device_format_properties2: extern "system" fn(PhysicalDevice, Format, *mut FormatProperties2) -> c_void,
    pub get_physical_device_image_format_properties2: extern "system" fn(PhysicalDevice, *const PhysicalDeviceImageFormatInfo2, *mut ImageFormatProperties2) -> Result,
    pub get_physical_device_queue_family_properties2: extern "system" fn(PhysicalDevice, *mut u32, *mut QueueFamilyProperties2) -> c_void,
    pub get_physical_device_memory_properties2: extern "system" fn(PhysicalDevice, *mut PhysicalDeviceMemoryProperties2) -> c_void,
    pub get_physical_device_sparse_image_format_properties2: extern "system" fn(PhysicalDevice, *const PhysicalDeviceSparseImageFormatInfo2, *mut u32, *mut SparseImageFormatProperties2) -> c_void,
    pub get_physical_device_external_buffer_properties: extern "system" fn(PhysicalDevice, *const PhysicalDeviceExternalBufferInfo, *mut ExternalBufferProperties) -> c_void,
    pub get_physical_device_external_fence_properties: extern "system" fn(PhysicalDevice, *const PhysicalDeviceExternalFenceInfo, *mut ExternalFenceProperties) -> c_void,
    pub get_physical_device_external_semaphore_properties: extern "system" fn(PhysicalDevice, *const PhysicalDeviceExternalSemaphoreInfo, *mut ExternalSemaphoreProperties) -> c_void,
}

Fields

enumerate_physical_device_groups: extern "system" fn(Instance, *mut u32, *mut PhysicalDeviceGroupProperties) -> Resultget_physical_device_features2: extern "system" fn(PhysicalDevice, *mut PhysicalDeviceFeatures2) -> c_voidget_physical_device_properties2: extern "system" fn(PhysicalDevice, *mut PhysicalDeviceProperties2) -> c_voidget_physical_device_format_properties2: extern "system" fn(PhysicalDevice, Format, *mut FormatProperties2) -> c_voidget_physical_device_image_format_properties2: extern "system" fn(PhysicalDevice, *const PhysicalDeviceImageFormatInfo2, *mut ImageFormatProperties2) -> Resultget_physical_device_queue_family_properties2: extern "system" fn(PhysicalDevice, *mut u32, *mut QueueFamilyProperties2) -> c_voidget_physical_device_memory_properties2: extern "system" fn(PhysicalDevice, *mut PhysicalDeviceMemoryProperties2) -> c_voidget_physical_device_sparse_image_format_properties2: extern "system" fn(PhysicalDevice, *const PhysicalDeviceSparseImageFormatInfo2, *mut u32, *mut SparseImageFormatProperties2) -> c_voidget_physical_device_external_buffer_properties: extern "system" fn(PhysicalDevice, *const PhysicalDeviceExternalBufferInfo, *mut ExternalBufferProperties) -> c_voidget_physical_device_external_fence_properties: extern "system" fn(PhysicalDevice, *const PhysicalDeviceExternalFenceInfo, *mut ExternalFenceProperties) -> c_voidget_physical_device_external_semaphore_properties: extern "system" fn(PhysicalDevice, *const PhysicalDeviceExternalSemaphoreInfo, *mut ExternalSemaphoreProperties) -> c_void

Implementations

impl InstanceFnV1_1

pub fn load<F>(_f: F) -> InstanceFnV1_1 where
    F: FnMut(&CStr) -> *const c_void

pub unsafe fn enumerate_physical_device_groups(
    &self,
    instance: Instance,
    p_physical_device_group_count: *mut u32,
    p_physical_device_group_properties: *mut PhysicalDeviceGroupProperties
) -> Result

pub unsafe fn get_physical_device_features2(
    &self,
    physical_device: PhysicalDevice,
    p_features: *mut PhysicalDeviceFeatures2
) -> c_void

pub unsafe fn get_physical_device_properties2(
    &self,
    physical_device: PhysicalDevice,
    p_properties: *mut PhysicalDeviceProperties2
) -> c_void

pub unsafe fn get_physical_device_format_properties2(
    &self,
    physical_device: PhysicalDevice,
    format: Format,
    p_format_properties: *mut FormatProperties2
) -> c_void

pub unsafe fn get_physical_device_image_format_properties2(
    &self,
    physical_device: PhysicalDevice,
    p_image_format_info: *const PhysicalDeviceImageFormatInfo2,
    p_image_format_properties: *mut ImageFormatProperties2
) -> Result

pub unsafe fn get_physical_device_queue_family_properties2(
    &self,
    physical_device: PhysicalDevice,
    p_queue_family_property_count: *mut u32,
    p_queue_family_properties: *mut QueueFamilyProperties2
) -> c_void

pub unsafe fn get_physical_device_memory_properties2(
    &self,
    physical_device: PhysicalDevice,
    p_memory_properties: *mut PhysicalDeviceMemoryProperties2
) -> c_void

pub unsafe fn get_physical_device_sparse_image_format_properties2(
    &self,
    physical_device: PhysicalDevice,
    p_format_info: *const PhysicalDeviceSparseImageFormatInfo2,
    p_property_count: *mut u32,
    p_properties: *mut SparseImageFormatProperties2
) -> c_void

pub unsafe fn get_physical_device_external_buffer_properties(
    &self,
    physical_device: PhysicalDevice,
    p_external_buffer_info: *const PhysicalDeviceExternalBufferInfo,
    p_external_buffer_properties: *mut ExternalBufferProperties
) -> c_void

pub unsafe fn get_physical_device_external_fence_properties(
    &self,
    physical_device: PhysicalDevice,
    p_external_fence_info: *const PhysicalDeviceExternalFenceInfo,
    p_external_fence_properties: *mut ExternalFenceProperties
) -> c_void

pub unsafe fn get_physical_device_external_semaphore_properties(
    &self,
    physical_device: PhysicalDevice,
    p_external_semaphore_info: *const PhysicalDeviceExternalSemaphoreInfo,
    p_external_semaphore_properties: *mut ExternalSemaphoreProperties
) -> c_void

Trait Implementations

impl Clone for InstanceFnV1_1

impl Send for InstanceFnV1_1

impl Sync for InstanceFnV1_1

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.