Struct ash::extensions::khr::GetPhysicalDeviceProperties2   
source · pub struct GetPhysicalDeviceProperties2 { /* private fields */ }Implementations§
source§impl GetPhysicalDeviceProperties2
 
impl GetPhysicalDeviceProperties2
pub fn new(entry: &Entry, instance: &Instance) -> Self
sourcepub unsafe fn get_physical_device_features2(
    &self,
    physical_device: PhysicalDevice,
    features: &mut PhysicalDeviceFeatures2KHR
)
 
pub unsafe fn get_physical_device_features2( &self, physical_device: PhysicalDevice, features: &mut PhysicalDeviceFeatures2KHR )
sourcepub unsafe fn get_physical_device_format_properties2(
    &self,
    physical_device: PhysicalDevice,
    format: Format,
    format_properties: &mut FormatProperties2KHR
)
 
pub unsafe fn get_physical_device_format_properties2( &self, physical_device: PhysicalDevice, format: Format, format_properties: &mut FormatProperties2KHR )
sourcepub unsafe fn get_physical_device_image_format_properties2(
    &self,
    physical_device: PhysicalDevice,
    image_format_info: &PhysicalDeviceImageFormatInfo2KHR,
    image_format_properties: &mut ImageFormatProperties2KHR
) -> VkResult<()>
 
pub unsafe fn get_physical_device_image_format_properties2( &self, physical_device: PhysicalDevice, image_format_info: &PhysicalDeviceImageFormatInfo2KHR, image_format_properties: &mut ImageFormatProperties2KHR ) -> VkResult<()>
sourcepub unsafe fn get_physical_device_memory_properties2(
    &self,
    physical_device: PhysicalDevice,
    memory_properties: &mut PhysicalDeviceMemoryProperties2KHR
)
 
pub unsafe fn get_physical_device_memory_properties2( &self, physical_device: PhysicalDevice, memory_properties: &mut PhysicalDeviceMemoryProperties2KHR )
sourcepub unsafe fn get_physical_device_properties2(
    &self,
    physical_device: PhysicalDevice,
    properties: &mut PhysicalDeviceProperties2KHR
)
 
pub unsafe fn get_physical_device_properties2( &self, physical_device: PhysicalDevice, properties: &mut PhysicalDeviceProperties2KHR )
sourcepub unsafe fn get_physical_device_queue_family_properties2_len(
    &self,
    physical_device: PhysicalDevice
) -> usize
 
pub unsafe fn get_physical_device_queue_family_properties2_len( &self, physical_device: PhysicalDevice ) -> usize
Retrieve the number of elements to pass to get_physical_device_queue_family_properties2()
sourcepub unsafe fn get_physical_device_queue_family_properties2(
    &self,
    physical_device: PhysicalDevice,
    out: &mut [QueueFamilyProperties2KHR]
)
 
pub unsafe fn get_physical_device_queue_family_properties2( &self, physical_device: PhysicalDevice, out: &mut [QueueFamilyProperties2KHR] )
Call get_physical_device_queue_family_properties2_len() to query the number of elements to pass to out.
Be sure to Default::default()-initialize these elements and optionally set their p_next pointer.
sourcepub unsafe fn get_physical_device_sparse_image_format_properties2_len(
    &self,
    physical_device: PhysicalDevice,
    format_info: &PhysicalDeviceSparseImageFormatInfo2KHR
) -> usize
 
pub unsafe fn get_physical_device_sparse_image_format_properties2_len( &self, physical_device: PhysicalDevice, format_info: &PhysicalDeviceSparseImageFormatInfo2KHR ) -> usize
Retrieve the number of elements to pass to get_physical_device_sparse_image_format_properties2()
sourcepub unsafe fn get_physical_device_sparse_image_format_properties2(
    &self,
    physical_device: PhysicalDevice,
    format_info: &PhysicalDeviceSparseImageFormatInfo2KHR,
    out: &mut [SparseImageFormatProperties2KHR]
)
 
pub unsafe fn get_physical_device_sparse_image_format_properties2( &self, physical_device: PhysicalDevice, format_info: &PhysicalDeviceSparseImageFormatInfo2KHR, out: &mut [SparseImageFormatProperties2KHR] )
Call get_physical_device_sparse_image_format_properties2_len() to query the number of elements to pass to out.
Be sure to Default::default()-initialize these elements and optionally set their p_next pointer.
pub const fn name() -> &'static CStr
pub fn fp(&self) -> &KhrGetPhysicalDeviceProperties2Fn
Trait Implementations§
source§impl Clone for GetPhysicalDeviceProperties2
 
impl Clone for GetPhysicalDeviceProperties2
source§fn clone(&self) -> GetPhysicalDeviceProperties2
 
fn clone(&self) -> GetPhysicalDeviceProperties2
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read more