summaryrefslogtreecommitdiff
path: root/ui/text.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/text.h')
-rw-r--r--ui/text.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/ui/text.h b/ui/text.h
index 31ed9a5..a367456 100644
--- a/ui/text.h
+++ b/ui/text.h
@@ -21,7 +21,12 @@ public:
Text & operator=(const std::string_view s);
private:
- std::vector<std::pair<GLuint, std::pair<GLsizei, GLint>>> models;
+ struct TextData {
+ GLuint textureId;
+ std::vector<unsigned short> range;
+ };
+
+ std::vector<TextData> models;
glContainer<Font::Quad> quads;
glVertexArray vao;
glm::vec3 colour;