memory manager published at flipcode.com. This can be turned on with the OSG_USE_MEMORY_MANGER option which then uses custom global new and delete operators as well as provide osgNew and osgDelete macro's which add ability to log line and file from which calls are made. Updated osg,osgUtil,osgDB,osgText and osgPlugins/osg to use osgNew/osgDelete, and fixed memory leaks highlighted by the new memory manager.
83 lines
1.6 KiB
C++
83 lines
1.6 KiB
C++
#include "FTOutlineGlyph.h"
|
|
#include "FTVectoriser.h"
|
|
#include "FTGL.h"
|
|
|
|
|
|
|
|
FTOutlineGlyph::FTOutlineGlyph( FT_Glyph glyph)
|
|
: FTGlyph(),
|
|
vectoriser(0),
|
|
numPoints(0),
|
|
numContours(0),
|
|
contourLength(0),
|
|
data(0),
|
|
glList(0)
|
|
{
|
|
if( ft_glyph_format_outline != glyph->format)
|
|
{
|
|
return;
|
|
}
|
|
|
|
vectoriser = osgNew FTVectoriser( glyph);
|
|
|
|
vectoriser->Process();
|
|
numContours = vectoriser->contours();
|
|
contourLength = osgNew int[ numContours];
|
|
|
|
for( int cn = 0; cn < numContours; ++cn)
|
|
{
|
|
contourLength[cn] = vectoriser->contourSize( cn);
|
|
}
|
|
|
|
numPoints = vectoriser->points();
|
|
data = osgNew double[ numPoints * 3];
|
|
vectoriser->MakeOutline( data);
|
|
|
|
advance = glyph->advance.x >> 16;
|
|
|
|
osgDelete vectoriser;
|
|
|
|
if ( ( numContours < 1) || ( numPoints < 3))
|
|
return;
|
|
|
|
glList = glGenLists(1);
|
|
int d = 0;
|
|
|
|
glNewList( glList, GL_COMPILE);
|
|
for( int c = 0; c < numContours; ++c)
|
|
{
|
|
glBegin( GL_LINE_LOOP);
|
|
for( int p = 0; p < ( contourLength[c]); ++p)
|
|
{
|
|
glVertex2dv( data + d);
|
|
d += 3;
|
|
}
|
|
glEnd();
|
|
}
|
|
glEndList();
|
|
|
|
// discard glyph image (bitmap or not)
|
|
FT_Done_Glyph( glyph); // Why does this have to be HERE
|
|
}
|
|
|
|
|
|
FTOutlineGlyph::~FTOutlineGlyph()
|
|
{
|
|
osgDelete [] data;
|
|
osgDelete [] contourLength;
|
|
}
|
|
|
|
|
|
float FTOutlineGlyph::Render( const FT_Vector& pen)
|
|
{
|
|
if( glList)
|
|
{
|
|
glTranslatef( pen.x, pen.y, 0);
|
|
glCallList( glList);
|
|
glTranslatef( -pen.x, -pen.y, 0);
|
|
}
|
|
|
|
return advance;
|
|
}
|
|
|