23 lines
515 B
C++
23 lines
515 B
C++
/* 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 "opengl.h"
|
|
#include "vec234.h"
|
|
#include "vector.h"
|
|
#include "texture-atlas.h"
|
|
#include "texture-font.h"
|
|
|
|
#ifdef __cplusplus
|
|
#ifndef NOT_USING_FT_GL_NAMESPACE
|
|
using namespace ftgl;
|
|
#endif /* NOT_USING_FT_GL_NAMESPACE */
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* FREETYPE_GL_H */
|