Enum glium::glutin::Api [] [src]

pub enum Api {
    OpenGl,
    OpenGlEs,
    WebGl,
}

All APIs related to OpenGL that you can possibly get while using glutin.

Variants

OpenGl

The classical OpenGL. Available on Windows, Linux, OS/X.

OpenGlEs

OpenGL embedded system. Available on Linux, Android.

WebGl

OpenGL for the web. Very similar to OpenGL ES.

Trait Implementations

Derived Implementations

impl Eq for Api

impl PartialEq<Api> for Api

fn eq(&self, __arg_0: &Api) -> bool

fn ne(&self, __arg_0: &Api) -> bool

impl Copy for Api

impl Clone for Api

fn clone(&self) -> Api

fn clone_from(&mut self, source: &Self)

impl Debug for Api

fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>