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/src/FTGlyph.cpp')
-rw-r--r--extern/bFTGL/src/FTGlyph.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/extern/bFTGL/src/FTGlyph.cpp b/extern/bFTGL/src/FTGlyph.cpp
deleted file mode 100644
index c68632949c2..00000000000
--- a/extern/bFTGL/src/FTGlyph.cpp
+++ /dev/null
@@ -1,17 +0,0 @@
-#include "FTGlyph.h"
-
-
-FTGlyph::FTGlyph( FT_GlyphSlot glyph)
-: advance(0.0f),
- err(0)
-{
- if( glyph)
- {
- bBox = FTBBox( glyph);
- advance = static_cast<float>( glyph->advance.x) / 64.0f;
- }
-}
-
-
-FTGlyph::~FTGlyph()
-{}