Struct ash::vk::SamplerCreateInfoBuilder
source · pub struct SamplerCreateInfoBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> SamplerCreateInfoBuilder<'a>
impl<'a> SamplerCreateInfoBuilder<'a>
pub fn flags(self, flags: SamplerCreateFlags) -> Self
pub fn mag_filter(self, mag_filter: Filter) -> Self
pub fn min_filter(self, min_filter: Filter) -> Self
pub fn mipmap_mode(self, mipmap_mode: SamplerMipmapMode) -> Self
pub fn address_mode_u(self, address_mode_u: SamplerAddressMode) -> Self
pub fn address_mode_v(self, address_mode_v: SamplerAddressMode) -> Self
pub fn address_mode_w(self, address_mode_w: SamplerAddressMode) -> Self
pub fn mip_lod_bias(self, mip_lod_bias: f32) -> Self
pub fn anisotropy_enable(self, anisotropy_enable: bool) -> Self
pub fn max_anisotropy(self, max_anisotropy: f32) -> Self
pub fn compare_enable(self, compare_enable: bool) -> Self
pub fn compare_op(self, compare_op: CompareOp) -> Self
pub fn min_lod(self, min_lod: f32) -> Self
pub fn max_lod(self, max_lod: f32) -> Self
pub fn border_color(self, border_color: BorderColor) -> Self
pub fn unnormalized_coordinates(self, unnormalized_coordinates: bool) -> Self
sourcepub fn push_next<T: ExtendsSamplerCreateInfo>(self, next: &'a mut T) -> Self
pub fn push_next<T: ExtendsSamplerCreateInfo>(self, next: &'a mut T) -> Self
Prepends the given extension struct between the root and the first pointer. This
method only exists on structs that can be passed to a function directly. Only
valid extension structs can be pushed into the chain.
If the chain looks like A -> B -> C
, and you call builder.push_next(&mut D)
, then the
chain will look like A -> D -> B -> C
.
sourcepub fn build(self) -> SamplerCreateInfo
pub fn build(self) -> SamplerCreateInfo
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§
source§impl<'a> Deref for SamplerCreateInfoBuilder<'a>
impl<'a> Deref for SamplerCreateInfoBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for SamplerCreateInfoBuilder<'a>
impl<'a> RefUnwindSafe for SamplerCreateInfoBuilder<'a>
impl<'a> !Send for SamplerCreateInfoBuilder<'a>
impl<'a> !Sync for SamplerCreateInfoBuilder<'a>
impl<'a> Unpin for SamplerCreateInfoBuilder<'a>
impl<'a> UnwindSafe for SamplerCreateInfoBuilder<'a>
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