Trait ggez::graphics::BackendSpec [] [src]

pub trait BackendSpec: Debug {
    type Resources: Resources;
    type Factory: Factory<Self::Resources>;
    type CommandBuffer: CommandBuffer<Self::Resources>;
    type Device: Device<Resources = Self::Resources, CommandBuffer = Self::CommandBuffer>;
}

A marker trait saying that something is a label for a particular backend, with associated gfx-rs types for that backend.

Associated Types

gfx resource type

gfx factory type

gfx command buffer type

gfx device type

Implementors