From dbb26902ed54ce308fdcec4697616e152f2894fd Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Mon, 16 Sep 2019 12:46:44 -0400 Subject: success with font loading --- src/text.cpp | 23 +++++++---------------- 1 file changed, 7 insertions(+), 16 deletions(-) (limited to 'src/text.cpp') diff --git a/src/text.cpp b/src/text.cpp index 7b2eb02..85c0ceb 100644 --- a/src/text.cpp +++ b/src/text.cpp @@ -1,18 +1,6 @@ #include "text.hpp" -#include - -#include - -struct FT_Info { - std::pair wh; - std::pair bl; - std::pair ad; - GLuint tex; - - FT_Info(void) - : tex(0) {} -}; +#include //FT_Library freetype; //std::map fonts; @@ -41,15 +29,15 @@ void TextSystem::loadFont(const std::string& name, int size) { - if (fonts.find(name) == fonts.end()) { + if (fonts.find(file) == fonts.end()) { FT_Face face; if (FT_New_Face(freetype, file.c_str(), 0, &face)) { // TODO handle this error } - fonts.emplace(name, face); + fonts.emplace(file, face); } - auto& face = fonts[name]; + auto& face = fonts[file]; FT_Set_Pixel_Sizes(face, 0, size); fontData.try_emplace(name, 95); @@ -77,5 +65,8 @@ void TextSystem::loadFont(const std::string& name, glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, g->bitmap.width, g->bitmap.rows, 0, GL_RGBA, GL_UNSIGNED_BYTE, buf.data()); } + + std::cout << "Loaded font: " << file << " (size: " << size << ')' + << std::endl; } -- cgit v1.2.3