diff options
author | Tectu <tectu66@gmail.com> | 2012-06-13 08:44:42 -0700 |
---|---|---|
committer | Tectu <tectu66@gmail.com> | 2012-06-13 08:44:42 -0700 |
commit | 25ff65d2076a5e450821aa3e79e2e78863c04de1 (patch) | |
tree | c770d2d451193a19e731b1f3afc3ac16f598082a /fonts.h | |
parent | d53551fb38418a063dcca0898c92349006c0e3e4 (diff) | |
parent | 2f157e29de212b0b21523cf5338369e51782870a (diff) | |
download | uGFX-25ff65d2076a5e450821aa3e79e2e78863c04de1.tar.gz uGFX-25ff65d2076a5e450821aa3e79e2e78863c04de1.tar.bz2 uGFX-25ff65d2076a5e450821aa3e79e2e78863c04de1.zip |
Merge pull request #5 from abhishek-kakkar/master
Changes in Text Rendering API
Diffstat (limited to 'fonts.h')
-rw-r--r-- | fonts.h | 39 |
1 files changed, 27 insertions, 12 deletions
@@ -1,12 +1,27 @@ -#ifndef ASCIILIB_H
-#define ASCIILIB_H
-
-#include <string.h>
-
-//#define ASCII_8X16_MS_Gothic
-#define ASCII_8X16_System
-
-void GetASCIICode(unsigned char* pBuffer,unsigned char ASCII);
-
-#endif
-
+/* + * fonts.h + * + * File containing prototype of the fonts for display + * + * + */ + +#include <stdint.h> + +#ifndef _FONT_ +#define _FONT_ + +#define FONT_TABLE_HEIGHT_IDX 0 +#define FONT_TABLE_PAD_AFTER_CHAR_IDX 1 +#define FONT_TABLE_LINE_SPACING_IDX 2 +#define FONT_TABLE_DECENDERS_HEIGHT_IDX 3 +#define FONT_TABLE_UNUSED_IDX 4 +#define FONT_TABLE_CHAR_LOOKUP_IDX 5 + +extern const uint8_t font_Small[]; +extern const uint8_t font_Larger[]; +//extern const uint8_t font_Medium[]; +extern const uint8_t font_MediumBold[]; +extern const uint8_t font_LargeNumbers[]; + +#endif |