Info

Struct Info 

Source
pub struct Info {
    pub platform_name: PlatformName,
    pub version: Version,
    pub shading_language: Version,
    pub extensions: HashSet<String>,
}
Expand description

OpenGL implementation information

Fields§

§platform_name: PlatformName

The platform identifier

§version: Version

The OpenGL API version number

§shading_language: Version

The GLSL version number

§extensions: HashSet<String>

The extensions supported by the implementation

Implementations§

Source§

impl Info

Source

pub fn is_version_supported(&self, major: u32, minor: u32) -> bool

Source

pub fn is_embedded_version_supported(&self, major: u32, minor: u32) -> bool

Source

pub fn is_extension_supported(&self, s: &str) -> bool

Returns true if the implementation supports the extension

Source

pub fn is_version_or_extension_supported( &self, major: u32, minor: u32, ext: &str, ) -> bool

Source

pub fn is_any_extension_supported(&self, exts: &[String]) -> bool

Source

pub fn is_supported(&self, requirements: &[Requirement<'_>]) -> bool

Trait Implementations§

Source§

impl Debug for Info

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Info

§

impl RefUnwindSafe for Info

§

impl Send for Info

§

impl Sync for Info

§

impl Unpin for Info

§

impl UnwindSafe for Info

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> Downcast<T> for T

Source§

fn downcast(&self) -> &T

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> Upcast<T> for T

Source§

fn upcast(&self) -> Option<&T>