Struct gfx_backend_gl::Version [−][src]
pub struct Version {
pub major: u32,
pub minor: u32,
pub is_embedded: bool,
pub revision: Option<u32>,
pub vendor_info: String,
}A version number for a specific component of an OpenGL implementation
Fields
major: u32minor: u32is_embedded: boolrevision: Option<u32>vendor_info: StringImplementations
impl Version[src]
impl Version[src]pub fn new(
major: u32,
minor: u32,
revision: Option<u32>,
vendor_info: String
) -> Self[src]
major: u32,
minor: u32,
revision: Option<u32>,
vendor_info: String
) -> Self
Create a new OpenGL version number
pub fn new_embedded(major: u32, minor: u32, vendor_info: String) -> Self[src]
Create a new OpenGL ES version number
pub fn tuple(&self) -> (u32, u32)[src]
Get a tuple of (major, minor) versions
pub fn parse(src: &str) -> Result<Version, &str>[src]
According to the OpenGL specification, the version information is expected to follow the following syntax:
<major> ::= <number>
<minor> ::= <number>
<revision> ::= <number>
<vendor-info> ::= <string>
<release> ::= <major> "." <minor> ["." <release>]
<version> ::= <release> [" " <vendor-info>]
Note that this function is intentionally lenient in regards to parsing,
and will try to recover at least the first two version numbers without
resulting in an Err.
Notes
WebGL 2 version returned as OpenGL ES 3.0
Trait Implementations
impl PartialOrd<Version> for Version[src]
impl PartialOrd<Version> for Version[src]impl StructuralEq for Version[src]
impl StructuralEq for Version[src]impl StructuralPartialEq for Version[src]
impl StructuralPartialEq for Version[src]Auto Trait Implementations
impl RefUnwindSafe for Version
impl RefUnwindSafe for Versionimpl UnwindSafe for Version
impl UnwindSafe for Version