#[repr(transparent)]pub struct PhysicalDeviceSampleLocationsPropertiesEXTBuilder<'a> { /* private fields */ }Implementations
sourceimpl<'a> PhysicalDeviceSampleLocationsPropertiesEXTBuilder<'a>
impl<'a> PhysicalDeviceSampleLocationsPropertiesEXTBuilder<'a>
pub fn sample_location_sample_counts(
self,
sample_location_sample_counts: SampleCountFlags
) -> PhysicalDeviceSampleLocationsPropertiesEXTBuilder<'a>
pub fn max_sample_location_grid_size(
self,
max_sample_location_grid_size: Extent2D
) -> PhysicalDeviceSampleLocationsPropertiesEXTBuilder<'a>
pub fn sample_location_coordinate_range(
self,
sample_location_coordinate_range: [f32; 2]
) -> PhysicalDeviceSampleLocationsPropertiesEXTBuilder<'a>
pub fn sample_location_sub_pixel_bits(
self,
sample_location_sub_pixel_bits: u32
) -> PhysicalDeviceSampleLocationsPropertiesEXTBuilder<'a>
pub fn variable_sample_locations(
self,
variable_sample_locations: bool
) -> PhysicalDeviceSampleLocationsPropertiesEXTBuilder<'a>
sourcepub fn build(self) -> PhysicalDeviceSampleLocationsPropertiesEXT
pub fn build(self) -> PhysicalDeviceSampleLocationsPropertiesEXT
Calling build will discard all the lifetime information. Only call this if
necessary! Builders implement Deref targeting their corresponding Vulkan struct,
so references to builders can be passed directly to Vulkan functions.
Trait Implementations
sourceimpl<'a> Deref for PhysicalDeviceSampleLocationsPropertiesEXTBuilder<'a>
impl<'a> Deref for PhysicalDeviceSampleLocationsPropertiesEXTBuilder<'a>
type Target = PhysicalDeviceSampleLocationsPropertiesEXT
type Target = PhysicalDeviceSampleLocationsPropertiesEXT
The resulting type after dereferencing.
sourcefn deref(
&self
) -> &<PhysicalDeviceSampleLocationsPropertiesEXTBuilder<'a> as Deref>::Target
fn deref(
&self
) -> &<PhysicalDeviceSampleLocationsPropertiesEXTBuilder<'a> as Deref>::Target
Dereferences the value.
sourceimpl<'a> DerefMut for PhysicalDeviceSampleLocationsPropertiesEXTBuilder<'a>
impl<'a> DerefMut for PhysicalDeviceSampleLocationsPropertiesEXTBuilder<'a>
sourcefn deref_mut(
&mut self
) -> &mut <PhysicalDeviceSampleLocationsPropertiesEXTBuilder<'a> as Deref>::Target
fn deref_mut(
&mut self
) -> &mut <PhysicalDeviceSampleLocationsPropertiesEXTBuilder<'a> as Deref>::Target
Mutably dereferences the value.
impl<'_> ExtendsPhysicalDeviceProperties2 for PhysicalDeviceSampleLocationsPropertiesEXTBuilder<'_>
Auto Trait Implementations
impl<'a> RefUnwindSafe for PhysicalDeviceSampleLocationsPropertiesEXTBuilder<'a>
impl<'a> !Send for PhysicalDeviceSampleLocationsPropertiesEXTBuilder<'a>
impl<'a> !Sync for PhysicalDeviceSampleLocationsPropertiesEXTBuilder<'a>
impl<'a> Unpin for PhysicalDeviceSampleLocationsPropertiesEXTBuilder<'a>
impl<'a> UnwindSafe for PhysicalDeviceSampleLocationsPropertiesEXTBuilder<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more