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:
authorDiego Borghetti <bdiego@gmail.com>2009-05-06 03:10:32 +0400
committerDiego Borghetti <bdiego@gmail.com>2009-05-06 03:10:32 +0400
commit405cf80eb8dc2df8ae160aee70aef34052add24a (patch)
treef03cc27e95bdf91b25ea9d2a0dffb28ccef666be /extern/bFTGL/include/FTGlyph.h
parent71c38978e14ebf3522fe60fc239ad04f10ef30ab (diff)
Big, big commit!!
1) Remove WITH_FREETYPE2 from code, so now blender always need freetype2 2) Remove the old bmfont 3) Remove ftfont and bFTGL library 4) Implement a new BLF_draw_default function for place that still need/use the old BMF api. I try to update both, scons and cmake, but I only can test with make, so hope all work fine. MSVC is broken, but I don't have Windows, things to search and fix are any reference to WITH_FREETYPE2, FTGL and BMFONT (take in care that blenkernel also have a BKE_bmfont.h, this don't have anything to do with bmfont). Always have to link/include the freetype2 library Remove any reference to libbmfont Remove any reference to libftfont Remove any reference to libbftgl (or libbFTGL)
Diffstat (limited to 'extern/bFTGL/include/FTGlyph.h')
-rw-r--r--extern/bFTGL/include/FTGlyph.h89
1 files changed, 0 insertions, 89 deletions
diff --git a/extern/bFTGL/include/FTGlyph.h b/extern/bFTGL/include/FTGlyph.h
deleted file mode 100644
index c38d51e728e..00000000000
--- a/extern/bFTGL/include/FTGlyph.h
+++ /dev/null
@@ -1,89 +0,0 @@
-#ifndef __FTGlyph__
-#define __FTGlyph__
-
-#include <ft2build.h>
-#include FT_FREETYPE_H
-#include FT_GLYPH_H
-
-#include "FTBBox.h"
-#include "FTPoint.h"
-#include "FTGL.h"
-
-
-/**
- * FTGlyph is the base class for FTGL glyphs.
- *
- * It provides the interface between Freetype glyphs and their openGL
- * renderable counterparts. This is an abstract class and derived classes
- * must implement the <code>render</code> function.
- *
- * @see FTGlyphContainer
- * @see FTBBox
- * @see FTPoint
- *
- */
-class FTGL_EXPORT FTGlyph
-{
- public:
- /**
- * Constructor
- */
- FTGlyph( FT_GlyphSlot glyph);
-
- /**
- * Destructor
- */
- virtual ~FTGlyph();
-
- /**
- * 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) = 0;
-
- /**
- * Return the advance width for this glyph.
- *
- * @return advance width.
- */
- float Advance() const { return advance;}
-
- /**
- * Return the bounding box for this glyph.
- *
- * @return bounding box.
- */
- const FTBBox& BBox() const { return bBox;}
-
- /**
- * Queries for errors.
- *
- * @return The current error code.
- */
- FT_Error Error() const { return err;}
-
- protected:
- /**
- * The advance distance for this glyph
- */
- float advance;
-
- /**
- * The bounding box of this glyph.
- */
- FTBBox bBox;
-
- /**
- * Current error code. Zero means no error.
- */
- FT_Error err;
-
- private:
-
-};
-
-
-#endif // __FTGlyph__
-