Edit

kc3-lang/ftgl/include/FTGLBitmapFont.h

Branch :

  • Show log

    Commit

  • Author : henry
    Date : 2001-08-07 01:00:37
    Hash : 048139fc
    Message : Added a render function to set the pixelStore stuff previously set by the bitmap glyph

  • include/FTGLBitmapFont.h
  • #ifndef		__FTGLBitmapFont__
    #define		__FTGLBitmapFont__
    
    
    #include	"FTFont.h"
    
    class FTBitmapGlyph;
    
    class	FTGLBitmapFont : public FTFont
    {
    	public:
    		// methods
    		FTGLBitmapFont();
    		~FTGLBitmapFont();
    		
    		void render( const char* string);
    
    		// attributes
    		
    	private:
    		// methods
    		bool MakeGlyphList();
    		
    		// attributes
    		FTBitmapGlyph* tempGlyph;
    		
    };
    #endif	//	__FTGLBitmapFont__