diff options
Diffstat (limited to 'gfx/models')
-rw-r--r-- | gfx/models/mesh.h | 2 | ||||
-rw-r--r-- | gfx/models/texture.cpp | 2 | ||||
-rw-r--r-- | gfx/models/vertex.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/gfx/models/mesh.h b/gfx/models/mesh.h index 972fe30..71f6dce 100644 --- a/gfx/models/mesh.h +++ b/gfx/models/mesh.h @@ -1,8 +1,8 @@ #pragma once #include "gfx/gl/vertexArrayObject.h" -#include <GL/glew.h> #include <glArrays.h> +#include <glad/gl.h> #include <memory> #include <span> #include <stdTypeDefs.h> diff --git a/gfx/models/texture.cpp b/gfx/models/texture.cpp index 3003319..380f2e0 100644 --- a/gfx/models/texture.cpp +++ b/gfx/models/texture.cpp @@ -1,11 +1,11 @@ #include "texture.h" #include "glArrays.h" #include "tga.h" -#include <GL/glew.h> #include <cache.h> #include <fcntl.h> #include <filesystem.h> #include <gfx/image.h> +#include <glad/gl.h> #include <glm/geometric.hpp> #include <resource.h> #include <stb/stb_image.h> diff --git a/gfx/models/vertex.h b/gfx/models/vertex.h index 181e7e7..0464ea7 100644 --- a/gfx/models/vertex.h +++ b/gfx/models/vertex.h @@ -1,6 +1,6 @@ #pragma once -#include <GL/glew.h> +#include <glad/gl.h> #include <glm/glm.hpp> class Vertex { |