diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-26 10:38:12 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-26 10:38:12 -0400 |
commit | 00da4d690af08d45788d770f9aadc9548438f074 (patch) | |
tree | 171f959df04a4d322888198d5c8f48635f0bf3b6 /src/text.cpp | |
parent | ff93f760dd50f078779bdabcd41626a45bea6548 (diff) |
made Config static; added fps measure/text
Diffstat (limited to 'src/text.cpp')
-rw-r--r-- | src/text.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/text.cpp b/src/text.cpp index e0eb158..9b59f8a 100644 --- a/src/text.cpp +++ b/src/text.cpp @@ -30,7 +30,6 @@ void TextSystem::update([[maybe_unused]] entityx::EntityManager& entites, if (d.text.size() == 0) continue; - // TODO make normal events.emit<NewRenderEvent>(d.vbo, d.tex, 0, d.buffer.size()); } } @@ -131,6 +130,12 @@ void TextSystem::put(const std::string& font, if (fontData.find(font) == fontData.end()) return; + auto& vector = fontData[font].text; + if (auto i = std::find_if(vector.begin(), vector.end(), [&x, &y](const Text& t) { + return t.x == x && t.y == y; }); i != vector.end()) { + vector.erase(i); + } + fontData[font].text.emplace_back(text, x, y, -9.0f); shouldUpdateVBOs = true; } |