Hash :
f8b7df3d
Author :
Date :
2001-08-05T21:39:50
#include "FTGlyph.h"
// OPSignature: FTGlyph:FTGlyph( FT_Face:face int:glyphIndex )
FTGlyph::FTGlyph( int gi)
: advance(0),
glyphIndex(gi),
ftGlyph(0),
err(0)
{
pos.x = 0;
pos.y = 0;
}
// OPSignature: FTGlyph:~FTGlyph()
FTGlyph::~FTGlyph()
{
FT_Done_Glyph(ftGlyph); // Is this OK?
}