mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-14 06:42:58 +08:00
fix(lv_freetype): clean up includes (#7524)
This commit is contained in:
parent
e4aac4c67a
commit
f393629c2a
@ -6,12 +6,11 @@
|
||||
/*********************
|
||||
* INCLUDES
|
||||
*********************/
|
||||
#include "../../misc/lv_fs_private.h"
|
||||
#include "lv_freetype_private.h"
|
||||
|
||||
#if LV_USE_FREETYPE
|
||||
|
||||
#include "lv_freetype_private.h"
|
||||
#include "../../misc/lv_fs_private.h"
|
||||
#include "../../core/lv_global.h"
|
||||
|
||||
/*********************
|
||||
|
@ -13,15 +13,16 @@ extern "C" {
|
||||
* INCLUDES
|
||||
*********************/
|
||||
#include "../../lv_conf_internal.h"
|
||||
|
||||
#if LV_USE_FREETYPE
|
||||
|
||||
#include "../../misc/lv_types.h"
|
||||
#include "../../misc/lv_event.h"
|
||||
#include LV_STDBOOL_INCLUDE
|
||||
|
||||
#if LV_USE_FREETYPE
|
||||
|
||||
/*********************
|
||||
* DEFINES
|
||||
*********************/
|
||||
* DEFINES
|
||||
*********************/
|
||||
|
||||
#define LV_FREETYPE_F26DOT6_TO_INT(x) ((x) >> 6)
|
||||
#define LV_FREETYPE_F26DOT6_TO_FLOAT(x) ((float)(x) / 64)
|
||||
|
@ -15,12 +15,12 @@ extern "C" {
|
||||
*********************/
|
||||
|
||||
#include "lv_freetype.h"
|
||||
#include "../../misc/cache/lv_cache.h"
|
||||
#include "../../misc/lv_ll.h"
|
||||
#include "../../font/lv_font.h"
|
||||
|
||||
#if LV_USE_FREETYPE
|
||||
|
||||
#include "../../misc/cache/lv_cache.h"
|
||||
#include "../../misc/lv_ll.h"
|
||||
#include "../../font/lv_font.h"
|
||||
#include "ft2build.h"
|
||||
#include FT_FREETYPE_H
|
||||
#include FT_GLYPH_H
|
||||
|
Loading…
x
Reference in New Issue
Block a user