RasterGlyphGrid
class RasterGlyphGrid(val gridWidth: Int, val gridHeight: Int, val glyphWidth: Int, val glyphHeight: Int, raster: IntArray) : GlyphGrid<IntArray>
An immutable GlyphGrid implementation that stores the entire grid in an argb raster.
Parameters
glyphWidth
The width of each glyph.
glyphHeight
The height of each glyph.
gridWidth
The width of the grid, i.e. the number of columns.
gridHeight
The height of the grid, i.e. the number of rows.
raster
The backing raster.