-
Notifications
You must be signed in to change notification settings - Fork 279
Expand file tree
/
Copy pathfreetype-gl.h
More file actions
35 lines (31 loc) · 793 Bytes
/
Copy pathfreetype-gl.h
File metadata and controls
35 lines (31 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/* Freetype GL - A C OpenGL Freetype engine
*
* Distributed under the OSI-approved BSD 2-Clause License. See accompanying
* file `LICENSE` for more details.
*/
#ifndef __FREETYPE_GL_H__
#define __FREETYPE_GL_H__
/* Mandatory */
#include "platform.h"
#include "opengl.h"
#include "vec234.h"
#include "vector.h"
#include "texture-atlas.h"
#include "texture-font.h"
#include "ftgl-utils.h"
#ifdef IMPLEMENT_FREETYPE_GL
#include "platform.c"
#include "texture-atlas.c"
#include "texture-font.c"
#include "vector.c"
#include "utf8-utils.c"
#include "distance-field.c"
#include "edtaa3func.c"
#include "ftgl-utils.c"
#endif
#ifdef __cplusplus
#ifndef NOT_USING_FT_GL_NAMESPACE
using namespace ftgl;
#endif /* NOT_USING_FT_GL_NAMESPACE */
#endif /* __cplusplus */
#endif /* FREETYPE_GL_H */