예제 #1
0
파일: blf.c 프로젝트: OldBrunet/BGERTPS
float BLF_fixed_width(int fontid)
{
	FontBLF *font;

	font= BLF_get(fontid);
	if (font)
		return(blf_font_fixed_width(font));
	return(0.0f);
}
예제 #2
0
파일: blf.c 프로젝트: RiazAhamed/NewBlender
float BLF_fixed_width(int fontid)
{
	FontBLF *font = blf_get(fontid);

	if (font && font->glyph_cache) {
		return blf_font_fixed_width(font);
	}

	return 0.0f;
}