Btk
ft.hpp
1 #if !defined(_BTK_FT_HPP_)
2 #define _BTK_FT_HPP_
3 //Freetype impl files
4 #include "../defs.hpp"
5 #include <ft2build.h>
6 
7 #include FT_FREETYPE_H
8 #include FT_OUTLINE_H
9 #include FT_STROKER_H
10 #include FT_GLYPH_H
11 #include FT_ERRORS_H
12 #include FT_TRUETYPE_IDS_H
13 struct SDL_RWops;
14 namespace BtkFt{
15  struct BTKAPI Face{
16  ~Face();
17  FT_Face face = nullptr;
18  };
19 }
20 
21 #endif // _BTK_FT_HPP_
Definition: ft.hpp:14
Definition: ft.hpp:15