| 1234567891011121314151617181920212223242526 |
- #ifndef LUAT_LIB_FONTS_H
- #define LUAT_LIB_FONTS_H
- #include "luat_base.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include "../src/font/lv_font.h"
- LV_FONT_DECLARE(lv_font_opposans_m_8)
- LV_FONT_DECLARE(lv_font_opposans_m_10)
- LV_FONT_DECLARE(lv_font_opposans_m_12)
- LV_FONT_DECLARE(lv_font_opposans_m_14)
- LV_FONT_DECLARE(lv_font_opposans_m_16)
- LV_FONT_DECLARE(lv_font_opposans_m_18)
- LV_FONT_DECLARE(lv_font_opposans_m_20)
- LV_FONT_DECLARE(lv_font_opposans_m_22)
- LV_FONT_DECLARE(lv_font_simsun_42)
- LV_FONT_DECLARE(lv_font_simsun_48)
- #ifdef __cplusplus
- }
- #endif
- #endif
|