Enum gltf::texture::MinFilter [−][src]
pub enum MinFilter {
Nearest,
Linear,
NearestMipmapNearest,
LinearMipmapNearest,
NearestMipmapLinear,
LinearMipmapLinear,
}
Expand description
Minification filter.
Variants
Nearest
Corresponds to GL_NEAREST
.
Linear
Corresponds to GL_LINEAR
.
NearestMipmapNearest
Corresponds to GL_NEAREST_MIPMAP_NEAREST
.
LinearMipmapNearest
Corresponds to GL_LINEAR_MIPMAP_NEAREST
.
NearestMipmapLinear
Corresponds to GL_NEAREST_MIPMAP_LINEAR
.
LinearMipmapLinear
Corresponds to GL_LINEAR_MIPMAP_LINEAR
.
Implementations
Returns the corresponding OpenGL enum value.
Trait Implementations
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<MinFilter, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<MinFilter, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
pub fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer,
pub fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for MinFilter
impl UnwindSafe for MinFilter
Blanket Implementations
Mutably borrows from an owned value. Read more