Types

From uGFX Wiki
Revision as of 15:49, 2 August 2021 by Tectu (Talk | contribs)

Jump to: navigation, search

µ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.

Pre-Processor

For pre-processing related boolean operations (eg. #if MY_FEATURE) use GFXON and GFXOFF accordingly.

Basic

Type Description
gBool A boolean value. Use gTrue and gFalse for assignments & comparisons respectively.
gI8 Signed integer at least 8 bits wide.
gU8 Unsigned integer at least 8 bits wide.
gI16 Signed integer at least 16 bits wide.
gU16 Unsigned integer at least 16 bits wide.
gI32 Signed integer at least 32 bits wide.
gU32 Unsigned integer at least 32 bits wide.

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.