Enum glutin::Api [] [src]

pub enum Api {
    OpenGl,
    OpenGlEs,
    WebGl,
}

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

Variants

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

OpenGL embedded system. Available on Linux, Android.

OpenGL for the web. Very similar to OpenGL ES.

Trait Implementations

impl Debug for Api
[src]

[src]

Formats the value using the given formatter.

impl Clone for Api
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for Api
[src]

impl PartialEq for Api
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Eq for Api
[src]