surfman::platform::unix::default::device

Type Alias Adapter

Source
pub type Adapter = Adapter<Device<Device, Device>, Device>;
Expand description

Represents a hardware display adapter that can be used for rendering (including the CPU).

Adapters can be sent between threads. To render with an adapter, open a thread-local Device.

Aliased Type§

enum Adapter {
    Default(Adapter<Device, Device>),
    Alternate(Adapter),
}

Variants§

§

Default(Adapter<Device, Device>)

The default adapter type.

§

Alternate(Adapter)

The alternate adapter type.

Trait Implementations

Source§

impl<Def, Alt> Clone for Adapter<Def, Alt>

Source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more