ESP8266 ILI9341 display support code with printf sources, wire-frame viewer and custom fonts  1.0
ESP8266ILI9341DisplayProject
vfont.h
Go to the documentation of this file.
1 
33 #ifndef _VFONT_H_
34 #define _VFONT_H_
35 
36 //#include "stdint.h"
37 
38 typedef struct {
39  int16_t xoff; /* X offset */
40  int16_t yff; /* Y offset */
41  int16_t w; /* Width */
42  int16_t h; /* Height */
43  int16_t xinc; /* Distance to Next Character by X */
44  int16_t yinc; /* Distance to Next Character by Y */
45  int16_t hby; /* gm.horiBearingY */
46  int16_t vby; /* gm.vertBearingY */
47  int16_t contours; /* Contours */
48  int16_t v[]; /* Data */
49 } path_t;
50 
51 #endif //_VFONT_H_
int16_t contours
Definition: vfont.h:47
int16_t xinc
Definition: vfont.h:43
int16_t w
Definition: vfont.h:41
int16_t xoff
Definition: vfont.h:39
int16_t vby
Definition: vfont.h:46
int16_t hby
Definition: vfont.h:45
int16_t yinc
Definition: vfont.h:44
int16_t h
Definition: vfont.h:42
int16_t yff
Definition: vfont.h:40
Definition: vfont.h:38