1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
#include "FTGLBitmapFont.h"
#include "FTGlyphContainer.h"
#include "FTBitmapGlyph.h"
FTGLBitmapFont::FTGLBitmapFont()
: tempGlyph(0)
{}
FTGLBitmapFont::~FTGLBitmapFont()
{}
// OPSignature: bool FTGlyphContainer:MakeGlyphList()
bool FTGLBitmapFont::MakeGlyphList()
{
// if( preCache)
FT_Face* ftFace = face.Face();
long glyphIndex;
for( int c = 0; c < numGlyphs; ++c)
{
glyphIndex = FT_Get_Char_Index( *ftFace, c );
err = FT_Load_Glyph( *ftFace, glyphIndex, FT_LOAD_DEFAULT);
if( err)
{}
FT_Glyph ftGlyph;
err = FT_Get_Glyph( (*ftFace)->glyph, &ftGlyph);
if( err)
{}
// FT_HAS_VERTICAL(face)
tempGlyph = new FTBitmapGlyph( ftGlyph, glyphIndex);
glyphList->Add( tempGlyph);
}
}