gfm.image.bitmap

This module introduces some Image implementations.

Members

Structs

Bitmap
struct Bitmap(T)

Simple planar image implementing the Image concept. A Bitmap is mostly a triplet of (base address + dimension + stride). Data can be owned or not.

TiledBitmap
struct TiledBitmap(T, size_t tileWidth, size_t tileHeight)

A TiledBitmap is like a Bitmap but pixels are organized in tiles.

Meta