Ejemplo n.º 1
0
/*
* SCR_RegisterSpecialFont
*/
qfontface_t *SCR_RegisterSpecialFont( const char *family, int style, unsigned int size )
{
	return FTLIB_RegisterFont( family, NULL, style, size );
}
Ejemplo n.º 2
0
/*
* SCR_RegisterFont
*/
qfontface_t *SCR_RegisterFont( const char *family, int style, unsigned int size )
{
	return FTLIB_RegisterFont( scr_cjk ? DEFAULT_SYSTEM_FONT_FAMILY_FALLBACK : family, 
		style, size, scr_fontSystemLastChar );
}
Ejemplo n.º 3
0
/*
* SCR_RegisterFont
*/
qfontface_t *SCR_RegisterFont( const char *family, int style, unsigned int size )
{
	return FTLIB_RegisterFont( family, con_fontSystemFallbackFamily->string, style, size );
}