Enum wgpu::SamplerBorderColor
source · #[repr(C)]pub enum SamplerBorderColor {
TransparentBlack = 0,
OpaqueBlack = 1,
OpaqueWhite = 2,
Zero = 3,
}
Expand description
Color variation to use when sampler addressing mode is AddressMode::ClampToBorder
Variants§
TransparentBlack = 0
[0, 0, 0, 0]
OpaqueBlack = 1
[0, 0, 0, 1]
OpaqueWhite = 2
[1, 1, 1, 1]
Zero = 3
On the Metal backend, this is equivalent to TransparentBlack
for
textures that have an alpha component, and equivalent to OpaqueBlack
for textures that do not have an alpha component. On other backends,
this is equivalent to TransparentBlack
. Requires
Features::ADDRESS_MODE_CLAMP_TO_ZERO
. Not supported on the web.
Trait Implementations§
source§impl Clone for SamplerBorderColor
impl Clone for SamplerBorderColor
source§fn clone(&self) -> SamplerBorderColor
fn clone(&self) -> SamplerBorderColor
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 moresource§impl Debug for SamplerBorderColor
impl Debug for SamplerBorderColor
source§impl Hash for SamplerBorderColor
impl Hash for SamplerBorderColor
source§impl PartialEq for SamplerBorderColor
impl PartialEq for SamplerBorderColor
source§fn eq(&self, other: &SamplerBorderColor) -> bool
fn eq(&self, other: &SamplerBorderColor) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for SamplerBorderColor
impl Eq for SamplerBorderColor
impl StructuralPartialEq for SamplerBorderColor
Auto Trait Implementations§
impl Freeze for SamplerBorderColor
impl RefUnwindSafe for SamplerBorderColor
impl Send for SamplerBorderColor
impl Sync for SamplerBorderColor
impl Unpin for SamplerBorderColor
impl UnwindSafe for SamplerBorderColor
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
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.