diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-07-23 10:47:10 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-07-23 10:47:10 -0400 |
commit | 9e540db7d6492168cadcafddbf145ffdd7b21981 (patch) | |
tree | 8019a7a67e66a5ec87ad7872278e8ee92431251a /src/font.cpp | |
parent | 215e5ee6ce089c3e0d5be28fd816bc7031b6acab (diff) |
source cleanup; beginning of custom attacks
Diffstat (limited to 'src/font.cpp')
-rw-r--r-- | src/font.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/font.cpp b/src/font.cpp index a7df99a..af49d2a 100644 --- a/src/font.cpp +++ b/src/font.cpp @@ -39,11 +39,7 @@ void FontSystem::setFontSize(int size) glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER , GL_LINEAR); glPixelStorei(GL_UNPACK_ALIGNMENT, 1); - /** - * The just-created texture will render red-on-black if we don't do anything to it, so - * here we create a buffer 4 times the size and transform the texture into an RGBA array, - * making it white-on-black. - */ + // convert red-on-black to RGBA auto& g = ftFace->glyph; std::vector<uint32_t> buf (g->bitmap.width * g->bitmap.rows, 0xFFFFFFFF); for (auto j = buf.size(); j--;) |