Struct ash::vk::SampleLocationsInfoEXTBuilder
source · #[repr(transparent)]pub struct SampleLocationsInfoEXTBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> SampleLocationsInfoEXTBuilder<'a>
impl<'a> SampleLocationsInfoEXTBuilder<'a>
pub fn sample_locations_per_pixel( self, sample_locations_per_pixel: SampleCountFlags ) -> Self
pub fn sample_location_grid_size( self, sample_location_grid_size: Extent2D ) -> Self
pub fn sample_locations(self, sample_locations: &'a [SampleLocationEXT]) -> Self
sourcepub fn build(self) -> SampleLocationsInfoEXT
pub fn build(self) -> SampleLocationsInfoEXT
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.