Enum dae_parser::SamplerFilter
source · pub enum SamplerFilter {
None,
Nearest,
Linear,
NearestMipmapNearest,
LinearMipmapNearest,
NearestMipmapLinear,
LinearMipmapLinear,
}
Expand description
(Undocumented?) Enumerated type fx_sampler_filter_common
from COLLADA spec.
Variants§
None
Nearest
Linear
NearestMipmapNearest
LinearMipmapNearest
NearestMipmapLinear
LinearMipmapLinear
Implementations§
Trait Implementations§
source§impl Clone for SamplerFilter
impl Clone for SamplerFilter
source§fn clone(&self) -> SamplerFilter
fn clone(&self) -> SamplerFilter
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 SamplerFilter
impl Debug for SamplerFilter
source§impl Default for SamplerFilter
impl Default for SamplerFilter
source§impl Display for SamplerFilter
impl Display for SamplerFilter
source§impl FromStr for SamplerFilter
impl FromStr for SamplerFilter
source§impl PartialEq<SamplerFilter> for SamplerFilter
impl PartialEq<SamplerFilter> for SamplerFilter
source§fn eq(&self, other: &SamplerFilter) -> bool
fn eq(&self, other: &SamplerFilter) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.