Struct glium::Version
[−]
[src]
pub struct Version(pub Api, pub u8, pub u8);
Describes a version.
A version can only be compared to another version if they belong to the same API.
For example, both Version(Gl, 3, 0) >= Version(GlEs, 3, 0)
and Version(GlEs, 3, 0) >= Version(Gl, 3, 0)
return false
.