1
0
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:
Victor Wheeler 2025-01-03 14:36:42 -07:00 committed by GitHub
parent e4aac4c67a
commit f393629c2a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 9 additions and 9 deletions

View File

@ -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"
/*********************

View File

@ -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)

View File

@ -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