Enum dae_parser::ColorParam [−][src]
Expand description
A type that describes color attributes of fixed-function shader elements inside
ProfileCommon
effects.
Variants
Color(Box<[f32; 4]>)
The value is a literal color, specified by four floating-point numbers in RGBA order.
Param(Box<str>)
The value is specified by a reference to a previously defined parameter
in the current scope that can be cast directly to a float4
.
Texture(Box<Texture>)
The value is specified by a reference to a previously defined sampler2D
object.
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ColorParam
impl Send for ColorParam
impl Sync for ColorParam
impl Unpin for ColorParam
impl UnwindSafe for ColorParam
Blanket Implementations
Mutably borrows from an owned value. Read more