summaryrefslogtreecommitdiff
path: root/ui/font.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/font.h')
-rw-r--r--ui/font.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/font.h b/ui/font.h
index 3254f80..bc11b76 100644
--- a/ui/font.h
+++ b/ui/font.h
@@ -1,9 +1,9 @@
#pragma once
+#include "gfx/gl/glTexture.h"
#include <array>
#include <cstddef>
#include <filesystem>
-#include <glArrays.h>
#include <glad/gl.h>
#include <glm/glm.hpp>
#include <map>
@@ -28,7 +28,7 @@ public:
};
struct FontTexture {
- glTexture texture;
+ glTexture<GL_TEXTURE_2D> texture;
unsigned int used;
};