Trait nannou::ui::backend::glium::glium::CapabilitiesSource[][src]

pub trait CapabilitiesSource {
    fn get_version(&self) -> &Version;
fn get_extensions(&self) -> &ExtensionsList;
fn get_capabilities(&self) -> &Capabilities; }

Trait for objects that describe the capabilities of an OpenGL backend.

Required Methods

Returns the version of the backend.

Returns the list of extensions that are supported.

Returns the capabilities of the backend.

Implementors