diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-18 14:40:23 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-18 14:40:23 -0400 |
commit | 0869328b12ff9b77000915f37443dcf2468d881e (patch) | |
tree | 1e9e4d5ca43661a4aca8f5052f1ba67d23b9d955 /src/text.cpp | |
parent | 0e7f7791fd592f0240a30168a9a570c57b0f5880 (diff) | |
parent | 8b834d0440f85a452694fb5cbb2cd9f4dae07aa2 (diff) |
Added UI rendering support to render loop, although fonts don't render yet
Diffstat (limited to 'src/text.cpp')
-rw-r--r-- | src/text.cpp | 51 |
1 files changed, 49 insertions, 2 deletions
diff --git a/src/text.cpp b/src/text.cpp index 1381eb2..fdb3245 100644 --- a/src/text.cpp +++ b/src/text.cpp @@ -131,15 +131,62 @@ void TextSystem::updateVBOs(void) auto& d = data.second; d.buffer.clear(); for (auto& text : d.text) { + float cOff = 0.0f; for (char c : text.text) { if (c < 32) continue; d.buffer += { - text.x, text.y, text.z, - d.data[c].offset.first, d.data[c].offset.second, + text.x+cOff, + text.y, + text.z, + d.data[c].offset.first, + d.data[c].offset.second+d.data[c].dim.second, 1.0f }; + d.buffer += { + text.x+cOff+d.data[c].dim.first, + text.y, + text.z, + d.data[c].offset.first+d.data[c].dim.first, + d.data[c].offset.second+d.data[c].dim.second, + 1.0f + }; + d.buffer += { + text.x+cOff, + text.y+d.data[c].dim.second, + text.z, + d.data[c].offset.first, + d.data[c].offset.second, + 1.0f + }; + + d.buffer += { + text.x+cOff+d.data[c].dim.first, + text.y, + text.z, + d.data[c].offset.first+d.data[c].dim.first, + d.data[c].offset.second+d.data[c].dim.second, + 1.0f + }; + d.buffer += { + text.x+cOff+d.data[c].dim.first, + text.y+d.data[c].dim.second, + text.z, + d.data[c].offset.first+d.data[c].dim.first, + d.data[c].offset.second, + 1.0f + }; + d.buffer += { + text.x+cOff, + text.y+d.data[c].dim.second, + text.z, + d.data[c].offset.first+d.data[c].dim.first, + d.data[c].offset.second, + 1.0f + }; + + cOff += d.data[c].dim.first + d.data[c].advance.first; } } |