Update engine components
Some checks failed
Run ReCI Build Test / Explore-Gitea-Actions (push) Failing after 1m32s

This commit is contained in:
2024-08-24 10:58:37 -04:00
parent 4996288163
commit f96a3851a1
8 changed files with 171 additions and 56 deletions

View File

@@ -15,7 +15,7 @@
#include <JGL/types/Font.h>
#include <JGL/types/FontCache.h>
#include <jlog/jlog.hpp>
#include <JGL/Logger.h>
namespace JGL {
@@ -45,7 +45,7 @@ namespace JGL {
//If the font doesn't exist in the cache yet.
if (!cachedFont) {
DEBUG("Caching font data...");
jlog::Debug("Caching font data...");
GLuint texture_id;
glGenTextures(1, &texture_id);
glBindTexture(GL_TEXTURE_2D, texture_id);