diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-06-01 07:57:25 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-06-01 07:57:25 -0400 |
commit | 11b8e727e04ed6095164bb826541409f88047625 (patch) | |
tree | a4fd635025564419cee686f75a0c80d1c62ba2fc /include | |
parent | 70eced563f3ba4d98ed0a7952a81b69903ed1803 (diff) |
font color fix
Diffstat (limited to 'include')
-rw-r--r-- | include/font.hpp | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/include/font.hpp b/include/font.hpp index 7dc7fc6..0a6e38b 100644 --- a/include/font.hpp +++ b/include/font.hpp @@ -2,7 +2,6 @@ #define FONT_HPP_ #include <map> -#include <memory> #include <vector> #include <color.hpp> @@ -22,6 +21,17 @@ struct FT_Info { : tex(0) {} }; +struct DrawData { + GLuint tex; + Color color; + GLfloat verts[30]; + + DrawData(GLuint t, Color c, std::initializer_list<GLfloat> v) + : tex(t), color(c) { + std::copy(v.begin(), v.end(), verts); + } +}; + class FontSystem { private: static FT_Library ftLibrary; @@ -29,7 +39,7 @@ private: static std::string fontFamily; static std::map<int, std::vector<FT_Info>> fontData; - static std::vector<std::unique_ptr<GLfloat>> drawData; + static std::vector<DrawData> drawData; static int currentSize; static Color currentColor; |