Struct ash::extensions::nv::CoverageReductionMode
source · pub struct CoverageReductionMode { /* private fields */ }
Expand description
Implementations§
source§impl CoverageReductionMode
impl CoverageReductionMode
pub fn new(entry: &Entry, instance: &Instance) -> Self
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.
pub const fn name() -> &'static CStr
pub fn fp(&self) -> &NvCoverageReductionModeFn
Trait Implementations§
source§impl Clone for CoverageReductionMode
impl Clone for CoverageReductionMode
source§fn clone(&self) -> CoverageReductionMode
fn clone(&self) -> CoverageReductionMode
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 moreAuto Trait Implementations§
impl Freeze for CoverageReductionMode
impl RefUnwindSafe for CoverageReductionMode
impl Send for CoverageReductionMode
impl Sync for CoverageReductionMode
impl Unpin for CoverageReductionMode
impl UnwindSafe for CoverageReductionMode
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