[][src]Struct ash::vk::KhrGetPhysicalDeviceProperties2Fn

pub struct KhrGetPhysicalDeviceProperties2Fn {
    pub get_physical_device_features2_khr: extern "system" fn(physical_device: PhysicalDevice, p_features: *mut PhysicalDeviceFeatures2) -> c_void,
    pub get_physical_device_properties2_khr: extern "system" fn(physical_device: PhysicalDevice, p_properties: *mut PhysicalDeviceProperties2) -> c_void,
    pub get_physical_device_format_properties2_khr: extern "system" fn(physical_device: PhysicalDevice, format: Format, p_format_properties: *mut FormatProperties2) -> c_void,
    pub get_physical_device_image_format_properties2_khr: extern "system" fn(physical_device: PhysicalDevice, p_image_format_info: *const PhysicalDeviceImageFormatInfo2, p_image_format_properties: *mut ImageFormatProperties2) -> Result,
    pub get_physical_device_queue_family_properties2_khr: extern "system" fn(physical_device: PhysicalDevice, p_queue_family_property_count: *mut u32, p_queue_family_properties: *mut QueueFamilyProperties2) -> c_void,
    pub get_physical_device_memory_properties2_khr: extern "system" fn(physical_device: PhysicalDevice, p_memory_properties: *mut PhysicalDeviceMemoryProperties2) -> c_void,
    pub get_physical_device_sparse_image_format_properties2_khr: extern "system" fn(physical_device: PhysicalDevice, p_format_info: *const PhysicalDeviceSparseImageFormatInfo2, p_property_count: *mut u32, p_properties: *mut SparseImageFormatProperties2) -> c_void,
}

Fields

get_physical_device_features2_khr: extern "system" fn(physical_device: PhysicalDevice, p_features: *mut PhysicalDeviceFeatures2) -> c_voidget_physical_device_properties2_khr: extern "system" fn(physical_device: PhysicalDevice, p_properties: *mut PhysicalDeviceProperties2) -> c_voidget_physical_device_format_properties2_khr: extern "system" fn(physical_device: PhysicalDevice, format: Format, p_format_properties: *mut FormatProperties2) -> c_voidget_physical_device_image_format_properties2_khr: extern "system" fn(physical_device: PhysicalDevice, p_image_format_info: *const PhysicalDeviceImageFormatInfo2, p_image_format_properties: *mut ImageFormatProperties2) -> Resultget_physical_device_queue_family_properties2_khr: extern "system" fn(physical_device: PhysicalDevice, p_queue_family_property_count: *mut u32, p_queue_family_properties: *mut QueueFamilyProperties2) -> c_voidget_physical_device_memory_properties2_khr: extern "system" fn(physical_device: PhysicalDevice, p_memory_properties: *mut PhysicalDeviceMemoryProperties2) -> c_voidget_physical_device_sparse_image_format_properties2_khr: extern "system" fn(physical_device: PhysicalDevice, p_format_info: *const PhysicalDeviceSparseImageFormatInfo2, p_property_count: *mut u32, p_properties: *mut SparseImageFormatProperties2) -> c_void

Implementations

impl KhrGetPhysicalDeviceProperties2Fn[src]

pub fn name() -> &'static CStr[src]

impl KhrGetPhysicalDeviceProperties2Fn[src]

pub fn load<F>(_f: F) -> Self where
    F: FnMut(&CStr) -> *const c_void
[src]

pub unsafe fn get_physical_device_features2_khr(
    &self,
    physical_device: PhysicalDevice,
    p_features: *mut PhysicalDeviceFeatures2
) -> c_void
[src]

pub unsafe fn get_physical_device_properties2_khr(
    &self,
    physical_device: PhysicalDevice,
    p_properties: *mut PhysicalDeviceProperties2
) -> c_void
[src]

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

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

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

pub unsafe fn get_physical_device_memory_properties2_khr(
    &self,
    physical_device: PhysicalDevice,
    p_memory_properties: *mut PhysicalDeviceMemoryProperties2
) -> c_void
[src]

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

Trait Implementations

impl Clone for KhrGetPhysicalDeviceProperties2Fn[src]

impl Send for KhrGetPhysicalDeviceProperties2Fn[src]

impl Sync for KhrGetPhysicalDeviceProperties2Fn[src]

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.