ESP32VGA
ESP32 VGA Controller and Graphics Library
|
Represents a glyph position, size and binary data. More...
#include <vgacontroller.h>
Public Attributes | |
int16_t | X |
int16_t | Y |
uint16_t | width |
uint16_t | height |
uint8_t const * | data |
Represents a glyph position, size and binary data.
A glyph is a bitmap (1 bit per pixel). The FabGL::TerminalClass uses glyphs to render characters.
uint8_t const* FabGL::Glyph::data |
Byte aligned binary data of the glyph. A 0 represents background or a transparent pixel. A 1 represents foreground.
uint16_t FabGL::Glyph::height |
Glyph vertical size
uint16_t FabGL::Glyph::width |
Glyph horizontal size
int16_t FabGL::Glyph::X |
Horizontal glyph coordinate
int16_t FabGL::Glyph::Y |
Vertical glyph coordinate