Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'extern/bFTGL/include/FTOutlineGlyph.h')
-rw-r--r--extern/bFTGL/include/FTOutlineGlyph.h54
1 files changed, 0 insertions, 54 deletions
diff --git a/extern/bFTGL/include/FTOutlineGlyph.h b/extern/bFTGL/include/FTOutlineGlyph.h
deleted file mode 100644
index 7dd0ba042b9..00000000000
--- a/extern/bFTGL/include/FTOutlineGlyph.h
+++ /dev/null
@@ -1,54 +0,0 @@
-#ifndef __FTOutlineGlyph__
-#define __FTOutlineGlyph__
-
-#include <ft2build.h>
-#include FT_FREETYPE_H
-#include FT_GLYPH_H
-
-#include "FTGL.h"
-#include "FTGlyph.h"
-
-class FTVectoriser;
-
-
-/**
- * FTOutlineGlyph is a specialisation of FTGlyph for creating outlines.
- *
- * @see FTGlyphContainer
- * @see FTVectoriser
- *
- */
-class FTGL_EXPORT FTOutlineGlyph : public FTGlyph
-{
- public:
- /**
- * Constructor. Sets the Error to Invalid_Outline if the glyphs isn't an outline.
- *
- * @param glyph The Freetype glyph to be processed
- */
- FTOutlineGlyph( FT_GlyphSlot glyph);
-
- /**
- * Destructor
- */
- virtual ~FTOutlineGlyph();
-
- /**
- * Renders this glyph at the current pen position.
- *
- * @param pen The current pen position.
- * @return The advance distance for this glyph.
- */
- virtual float Render( const FTPoint& pen);
-
- private:
- /**
- * OpenGL display list
- */
- GLuint glList;
-
-};
-
-
-#endif // __FTOutlineGlyph__
-