FTGL 2.4.0
FTGLTextureFont.h
Go to the documentation of this file.
1/*
2 * FTGL - OpenGL font library
3 *
4 * Copyright (c) 2001-2004 Henry Maddocks <ftgl@opengl.geek.nz>
5 * Copyright (c) 2008 Sam Hocevar <sam@hocevar.net>
6 * Copyright (c) 2008 Sean Morrison <learner@brlcad.org>
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining
9 * a copy of this software and associated documentation files (the
10 * "Software"), to deal in the Software without restriction, including
11 * without limitation the rights to use, copy, modify, merge, publish,
12 * distribute, sublicense, and/or sell copies of the Software, and to
13 * permit persons to whom the Software is furnished to do so, subject to
14 * the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be
17 * included in all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
22 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
23 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
25 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 */
27
28#ifndef __ftgl__
29# warning This header is deprecated. Please use <FTGL/ftgl.h> from now.
30# include <FTGL/ftgl.h>
31#endif
32
33#ifndef __FTTextureFont__
34#define __FTTextureFont__
35
36#ifdef __cplusplus
37
38
46{
47 public:
53 FTTextureFont(const char* fontFilePath);
54
63 FTTextureFont(const unsigned char *pBufferBytes,
64 size_t bufferSizeInBytes);
65
69 virtual ~FTTextureFont();
70
71 protected:
81 virtual FTGlyph* MakeGlyph(FT_GlyphSlot slot);
82};
83
84#define FTGLTextureFont FTTextureFont
85
86#endif //__cplusplus
87
89
99
111 size_t len);
112
114
115#endif // __FTTextureFont__
116
struct _FTGLfont FTGLfont
Definition FTFont.h:414
FTGLfont * ftglCreateTextureFontFromMem(const unsigned char *bytes, size_t len)
Create a specialised FTGLfont object for handling texture-mapped fonts from a buffer in memory.
FTGLfont * ftglCreateTextureFont(const char *file)
Create a specialised FTGLfont object for handling texture-mapped fonts.
FTFont is the public interface for the FTGL library.
Definition FTFont.h:57
FTGlyph is the base class for FTGL glyphs.
Definition FTGlyph.h:51
FTTextureFont is a specialisation of the FTFont class for handling Texture mapped fonts.
FTTextureFont(const unsigned char *pBufferBytes, size_t bufferSizeInBytes)
Open and read a font from a buffer in memory.
virtual FTGlyph * MakeGlyph(FT_GlyphSlot slot)
Construct a glyph of the correct type.
FTTextureFont(const char *fontFilePath)
Open and read a font file.
virtual ~FTTextureFont()
Destructor.
#define FTGL_BEGIN_C_DECLS
Definition ftgl.h:43
#define FTGL_END_C_DECLS
Definition ftgl.h:44
#define FTGL_EXPORT
Definition ftgl.h:134