Struct ash::extensions_generated::nv::coverage_reduction_mode::Instance
source · pub struct Instance {
pub(crate) fp: InstanceFn,
pub(crate) handle: Instance,
}
Expand description
VK_NV_coverage_reduction_mode instance-level functions
Fields§
§fp: InstanceFn
§handle: Instance
Implementations§
source§impl Instance
impl Instance
sourcepub unsafe fn get_physical_device_supported_framebuffer_mixed_samples_combinations_len(
&self,
physical_device: PhysicalDevice,
) -> VkResult<usize>
pub unsafe fn get_physical_device_supported_framebuffer_mixed_samples_combinations_len( &self, physical_device: PhysicalDevice, ) -> VkResult<usize>
Retrieve the number of elements to pass to get_physical_device_supported_framebuffer_mixed_samples_combinations()
sourcepub unsafe fn get_physical_device_supported_framebuffer_mixed_samples_combinations(
&self,
physical_device: PhysicalDevice,
out: &mut [FramebufferMixedSamplesCombinationNV<'_>],
) -> VkResult<()>
pub unsafe fn get_physical_device_supported_framebuffer_mixed_samples_combinations( &self, physical_device: PhysicalDevice, out: &mut [FramebufferMixedSamplesCombinationNV<'_>], ) -> VkResult<()>
Call get_physical_device_supported_framebuffer_mixed_samples_combinations_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.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Instance
impl RefUnwindSafe for Instance
impl Send for Instance
impl Sync for Instance
impl Unpin for Instance
impl UnwindSafe for Instance
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more