TTC file added to fontmanger

- fontmanager
1. Truetype collection(*.ttc) added
2. font number double counting fixed
- compile error fixed
This commit is contained in:
Seo Youngjin 2020-07-16 13:08:59 +09:00
parent 1822edb88d
commit b5f42fb807
2 changed files with 5 additions and 6 deletions

View File

@ -498,7 +498,7 @@ final class Setting {
case UINTEGER:
return to!string(_store.uinteger);
case FLOAT:
return to!string(_store.floating);
return to!string(cast(double)_store.floating);
case TRUE:
return "true";
case FALSE:
@ -519,7 +519,7 @@ final class Setting {
case UINTEGER:
return to!string(_store.uinteger);
case FLOAT:
return to!string(_store.floating);
return to!string(cast(double)_store.floating);
case TRUE:
return "true";
case FALSE:

View File

@ -771,7 +771,9 @@ bool registerFontConfigFonts(FreeTypeFontManager fontMan) {
}
string fn = fromStringz(s).dup;
string fn16 = toLower(fn);
if (!fn16.endsWith(".ttf") && !fn16.endsWith(".odf") && !fn16.endsWith(".otf") && !fn16.endsWith(".pfb") && !fn16.endsWith(".pfa") ) {
if (!fn16.endsWith(".ttf") && !fn16.endsWith(".odf") && !fn16.endsWith(".otf") &&
!fn16.endsWith(".ttc") && !fn16.endsWith(".pfb") && !fn16.endsWith(".pfa") )
{
continue;
}
int weight = FC_WEIGHT_MEDIUM;
@ -912,9 +914,6 @@ bool registerFontConfigFonts(FreeTypeFontManager fontMan) {
}
*/
facesFound++;
}
FcFontSetDestroy(fontset);