Enum dae_parser::SurfaceOption [−][src]
pub enum SurfaceOption {
SrgbGamma,
Normalized3,
Normalized4,
Compressible,
}
Expand description
Contains additional hints about data relationships and other things to help an application pick the best format.
Variants
Colors are stored with respect to the sRGB 2.2 gamma curve rather than linear.
The texel’s XYZ/RGB should be normalized such as in a normal map.
The texel’s XYZW/RGBA should be normalized such as in a normal map.
The surface may use run-time compression.
Consider the best compression based on desired SurfaceChannels
,
SurfaceRange
, SurfacePrecision
, and SurfaceOption
s.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for SurfaceOption
impl Send for SurfaceOption
impl Sync for SurfaceOption
impl Unpin for SurfaceOption
impl UnwindSafe for SurfaceOption
Blanket Implementations
Mutably borrows from an owned value. Read more