Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenfont/intern/blf_font.c
| Show First 20 Lines • Show All 92 Lines • ▼ Show 20 Lines | |||||
| unsigned int coverage4; | unsigned int coverage4; | ||||
| } eFaceDetails; | } eFaceDetails; | ||||
| /* Details about the fallback fonts we ship, so that we can load only when needed. */ | /* Details about the fallback fonts we ship, so that we can load only when needed. */ | ||||
| static const eFaceDetails static_face_details[] = { | static const eFaceDetails static_face_details[] = { | ||||
| {"lastresort.woff2", UINT32_MAX, UINT32_MAX, UINT32_MAX, UINT32_MAX}, | {"lastresort.woff2", UINT32_MAX, UINT32_MAX, UINT32_MAX, UINT32_MAX}, | ||||
| {"Noto Sans CJK Regular.woff2", 0x30000083L, 0x2BDF3C10L, 0x16L, 0}, | {"Noto Sans CJK Regular.woff2", 0x30000083L, 0x2BDF3C10L, 0x16L, 0}, | ||||
| {"NotoEmoji-VariableFont_wght.woff2", 0x80000003L, 0x241E4ACL, 0x14000000L, 0x4000000L}, | {"NotoEmoji-VariableFont_wght.woff2", 0x80000003L, 0x241E4ACL, 0x14000000L, 0x4000000L}, | ||||
| {"NotoSansArabic-VariableFont_wdth,wght.woff2", TT_UCR_ARABIC, 0, 0, 0}, | {"NotoSansArabic-VariableFont_wdth,wght.woff2", | ||||
| {"NotoSansArmenian-VariableFont_wdth,wght.woff2", | TT_UCR_ARABIC, | ||||
| TT_UCR_ARMENIAN, | (uint)TT_UCR_ARABIC_PRESENTATION_FORMS_A, | ||||
| TT_UCR_ALPHABETIC_PRESENTATION_FORMS, | TT_UCR_ARABIC_PRESENTATION_FORMS_B, | ||||
| 0, | |||||
| 0}, | 0}, | ||||
| {"NotoSansArmenian-VariableFont_wdth,wght.woff2", TT_UCR_ARMENIAN, 0, 0, 0}, | |||||
| {"NotoSansBengali-VariableFont_wdth,wght.woff2", TT_UCR_BENGALI, 0, 0, 0}, | {"NotoSansBengali-VariableFont_wdth,wght.woff2", TT_UCR_BENGALI, 0, 0, 0}, | ||||
| {"NotoSansDevanagari-Regular.woff2", TT_UCR_DEVANAGARI, 0, 0, 0}, | {"NotoSansDevanagari-Regular.woff2", TT_UCR_DEVANAGARI, 0, 0, 0}, | ||||
| {"NotoSansEthiopic-Regular.woff2", 0, 0, TT_UCR_ETHIOPIC, 0}, | {"NotoSansEthiopic-Regular.woff2", 0, 0, TT_UCR_ETHIOPIC, 0}, | ||||
| {"NotoSansGeorgian-VariableFont_wdth,wght.woff2", TT_UCR_GEORGIAN, 0, 0, 0}, | {"NotoSansGeorgian-VariableFont_wdth,wght.woff2", TT_UCR_GEORGIAN, 0, 0, 0}, | ||||
| {"NotoSansGujarati-Regular.woff2", TT_UCR_GUJARATI, 0, 0, 0}, | {"NotoSansGujarati-Regular.woff2", TT_UCR_GUJARATI, 0, 0, 0}, | ||||
| {"NotoSansGurmukhi-VariableFont_wdth,wght.woff2", TT_UCR_GURMUKHI, 0, 0, 0}, | {"NotoSansGurmukhi-VariableFont_wdth,wght.woff2", TT_UCR_GURMUKHI, 0, 0, 0}, | ||||
| {"NotoSansHebrew-VariableFont_wdth,wght.woff2", TT_UCR_HEBREW, 0, 0, 0}, | {"NotoSansHebrew-VariableFont_wdth,wght.woff2", TT_UCR_HEBREW, 0, 0, 0}, | ||||
| {"NotoSansJavanese-Regular.woff2", 0x80000003L, 0x2000L, 0, 0}, | {"NotoSansJavanese-Regular.woff2", 0x80000003L, 0x2000L, 0, 0}, | ||||
| ▲ Show 20 Lines • Show All 92 Lines • Show Last 20 Lines | |||||