Enum tms9918a_emu::VideoMode[][src]

pub enum VideoMode {
    Gfx1,
    Gfx2,
    Text,
    Multicolor,
}

Variants

Gfx1

Graphics I: 256x192 pixels, 32x24 tiles of 8x8 pixels each, 1 character set.

Each group of 8 tiles has the same 2-color limit.

Gfx2

Graphics II: 256x192 pixels, 32x24 tiles of 8x8 pixels each, 3 character sets.

Each 8-pixel line of a tile has a 2-color limit.

This mode is not currently implemented.

Text

Text: 240x192 pixels, 40x24 tiles of 6x8 pixels each, 1 character set.

2 colors for the whole screen, set by the contents of register 7.

Multicolor

Multicolor: 256x192 pixels, 64x48 virtual pixels

Each virtual pixel has their own color.

This mode is not currently implemented.

Trait Implementations

impl Debug for VideoMode[src]

impl PartialEq<VideoMode> for VideoMode[src]

impl StructuralPartialEq for VideoMode[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> From<T> for T[src]

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

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>,