Re: [ft] Freetype2 and TimesNewRoman?

2015-10-21 Thread Werner LEMBERG
> Does Freetype2 support TimesNewRoman Font? Certainly. > I believe this is 'Serif'? TimesNewRoman is indeed a serif font. However, it depends on your system's font setup whether, say, the HTML fallback font `serif' maps to TimesNewRoman. > Unfortunately when searching for Glyph information

Re: [ft-devel] How to free FT_MM_Var*?

2015-10-21 Thread Werner LEMBERG
> How to free the FT_MM_Var* returned by FT_Get_MM_Var()? With `free'. The pointers inside the structure are nothing a user should take care of. > “The Multiple Masters/GX var descriptor. Allocates a data structure, > which the user must free.” — I've clarified this in the documentation. >

[ft] Freetype2 and TimesNewRoman?

2015-10-21 Thread Domonic Tom
HiDoes Freetype2 support TimesNewRoman Font? I believe this is 'Serif'? The reason I ask is that I'm using freetype2 as a dependency for another library which is parsing a document containing TimesNewRoman font. Unfortunately when searching for Glyph information using the FT_Get_Char_Index

[ft-devel] How to free FT_MM_Var*?

2015-10-21 Thread Sascha Brawer
How to free the FT_MM_Var* returned by FT_Get_MM_Var()? “The Multiple Masters/GX var descriptor. Allocates a data structure, which the user must free.” — http://www.freetype.org/freetype2/docs/reference/ft2-multiple_masters.html#FT_Get_MM_Var In the past, I believe there was a FT_FREE macro, but