Types
From uGFX Wiki
Revision as of 15:39, 2 August 2021 by Tectu (Talk | contribs) (Created page with "µGFX allows to write applications (eg. GUIs) that are completely portable as the library itself is highly agnostic. To achieve this goal, users should rely on the types expos...")
µGFX allows to write applications (eg. GUIs) that are completely portable as the library itself is highly agnostic. To achieve this goal, users should rely on the types exposed by µGFX as much as possible to prevent problems when migration to different systems.
Basic
Type | Description |
---|---|
gBool |
A boolean value. Use gTrue and gFalse for assignments & comparisons respectively.
|
Rendering
Type | Description |
---|---|
gCoord |
A type to express a coordinate in pixels. |
gColor |
A color. |
gFont |
A font. See font rendering. |
gImage |
An image. See images. |