Enum dae_parser::SurfacePrecision [−][src]
pub enum SurfacePrecision {
Low,
Mid,
High,
}
Expand description
The precision of the texel channel value.
Each channel of the texel has a precision. Typically, channels have the same precision. An exact format may lower the precision of an individual channel but applying a higher precision by linking the channels may still convey the same information.
Variants
Low
For integers, this typically represents 8 bits. For floats, typically 16 bits.
Mid
For integers, this typically represents 8 to 24 bits. For floats, typically 16 to 32 bits.
High
For integers, this typically represents 16 to 32 bits. For floats, typically 24 to 32 bits.
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for SurfacePrecision
impl Send for SurfacePrecision
impl Sync for SurfacePrecision
impl Unpin for SurfacePrecision
impl UnwindSafe for SurfacePrecision
Blanket Implementations
Mutably borrows from an owned value. Read more