Edit

kc3-lang/ftgl/include/FTGLPolygonFont.h

Branch :

  • Show log

    Commit

  • Author : henry
    Date : 2001-10-25 02:01:20
    Hash : 1010afa2
    Message : Removed redundant tempGlyph members

  • include/FTGLPolygonFont.h
  • #ifndef		__FTGLPolygonFont__
    #define		__FTGLPolygonFont__
    
    #include "FTGL.h"
    
    #include	"FTFont.h"
    
    
    class FTPolyGlyph;
    
    /**
     * FTGLPolygonFont is a specialisation of the FTFont class for handling
     * tesselated Polygon Mesh fonts
     *
     * @see		FTFont
     */
    class FTGL_EXPORT FTGLPolygonFont : public FTFont
    {
    	public:
    		/**
    		 * Default Constructor
    		 */
    		FTGLPolygonFont();
    		
    		/**
    		 * Destructor
    		 */
    		~FTGLPolygonFont();
    		
    	private:
    		/**
    		 * Constructs the internal glyph cache.
    		 *
    		 * This a list of glyphs processed for openGL rendering NOT
    		 * freetype glyphs
    		 */
    		bool MakeGlyphList();
    		
    };
    
    
    #endif	//	__FTGLPolygonFont__