Enum ggez::conf::Backend[][src]

pub enum Backend {
    OpenGL {
        major: u8,
        minor: u8,
    },
    OpenGLES {
        major: u8,
        minor: u8,
    },
}

Possible backends. Currently, only OpenGL and OpenGL ES Core specs are supported, but this lets you specify which to use as well as the version numbers.

Defaults:

Backend::OpenGL {
    major: 3,
    minor: 2,
}

Variants

OpenGL

Defaults to OpenGL 3.2, which is supported by basically every machine since 2009 or so (apart from the ones that don't).

Fields of OpenGL

major: u8

OpenGL major version

minor: u8

OpenGL minor version

OpenGLES

OpenGL ES, defaults to 3.0. Used for phones and other mobile devices. Using something older than 3.0 starts to running into sticky limitations, particularly with instanced drawing (used for SpriteBatch), but might be possible.

Fields of OpenGLES

major: u8

OpenGL ES major version

minor: u8

OpenGL ES minor version

Implementations

impl Backend[src]

pub fn version(self, new_major: u8, new_minor: u8) -> Self[src]

Set requested OpenGL/OpenGL ES version.

pub fn gl(self) -> Self[src]

Use OpenGL

pub fn gles(self) -> Self[src]

Use OpenGL ES

Trait Implementations

impl Clone for Backend[src]

impl Copy for Backend[src]

impl Debug for Backend[src]

impl Default for Backend[src]

fn default() -> Self[src]

Return Backend::OpenGL { major: 3, minor: 2 }

impl<'de> Deserialize<'de> for Backend[src]

impl Eq for Backend[src]

impl From<Backend> for GlBackendSpec[src]

impl PartialEq<Backend> for Backend[src]

impl Serialize for Backend[src]

impl StructuralEq for Backend[src]

impl StructuralPartialEq for Backend[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,