Enum dae_parser::Profile [−][src]
pub enum Profile {
Common(ProfileCommon),
CG(ProfileCG),
GLES(ProfileGLES),
GLSL(ProfileGLSL),
}
Expand description
A <profile_*>
element.
Variants
Common(ProfileCommon)
Opens a block of platform-independent declarations for the common, fixed-function shader.
Tuple Fields of Common
CG(ProfileCG)
Declares platform-specific data types and Technique
s
for the Cg language.
Tuple Fields of CG
0: ProfileCG
GLES(ProfileGLES)
Declares platform-specific data types and Technique
s
for OpenGL ES.
Tuple Fields of GLES
0: ProfileGLES
GLSL(ProfileGLSL)
Declares platform-specific data types and Technique
s
for OpenGL Shading Language.
Tuple Fields of GLSL
0: ProfileGLSL
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Profile
impl UnwindSafe for Profile
Blanket Implementations
Mutably borrows from an owned value. Read more