加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
lv_freetype.h 923 Bytes
一键复制 编辑 原始数据 按行查看 历史
Smalli 提交于 2020-05-15 21:12 . fix a few things
/**
* @file lv_freetype.h
*
*/
#ifndef _LV_FONT_TTF_H
#define _LV_FONT_TTF_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include "lvgl/lvgl.h"
#include "ft2build.h"
#include FT_FREETYPE_H
#include FT_GLYPH_H
#include FT_CACHE_H
#define USE_CACHE_MANGER 1
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
**********************/
typedef struct {
FT_Face face; /* handle to face object */
uint16_t font_size; /*font height size */
}lv_font_fmt_freetype_dsc_t;
/**********************
* GLOBAL PROTOTYPES
**********************/
int lv_freetype_init(uint8_t max_faces);
int lv_freetype_font_init(lv_font_t * font, const char * font_path, uint16_t font_size);
/**********************
* MACROS
**********************/
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化