[cello-cvs] CVS cello/cl-ftgl/ftgl-int
fgoenninger
fgoenninger at common-lisp.net
Sat Aug 26 16:09:36 UTC 2006
Update of /project/cello/cvsroot/cello/cl-ftgl/ftgl-int
In directory clnet:/tmp/cvs-serv3998
Modified Files:
FTGLFromC.cpp
Log Message:
Changed: BuildGlyph no more part of FTGL (version 2.1.2). Tried to use MakeGlyph instead...
--- /project/cello/cvsroot/cello/cl-ftgl/ftgl-int/FTGLFromC.cpp 2006/08/23 20:08:43 1.2
+++ /project/cello/cvsroot/cello/cl-ftgl/ftgl-int/FTGLFromC.cpp 2006/08/26 16:09:36 1.3
@@ -62,11 +62,12 @@
extern "C" {
-/* void __stdcall fgcBuildGlyphs( FTFont* f )
+ /*
+void __stdcall fgcBuildGlyphs( FTFont* f )
{
f->BuildGlyphs();
}
-*/
+ */
bool __stdcall fgcSetFaceSize( FTFont* f,
unsigned int faceSize,
@@ -90,13 +91,14 @@
return f->Advance( string );
}
-/*
+
+ /*
int __stdcall fgcCharTexture( FTFont* f, int chr )
{
- return ((FTGlyph *) f->BuildGlyph( chr ))->glRendering();
+ return ((FTGlyph *) f->MakeGlyph( chr ))->glRendering();
//return f->GlyphRendering( chr );
}
-*/
+ */
/*
void FTFont::DoRender( const unsigned int chr, const unsigned int nextChr)
More information about the Cello-cvs
mailing list