diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-05-28 11:45:01 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-05-28 11:45:01 +0100 |
commit | 3c1c392ab177566f09d11a380210e1937741fad2 (patch) | |
tree | 67b12689c60dc2e75a5587988dd11bf36c12da9a /test/test-lib.cpp | |
parent | Add glad submodule and build a glad library (diff) | |
download | ilt-3c1c392ab177566f09d11a380210e1937741fad2.tar.bz2 ilt-3c1c392ab177566f09d11a380210e1937741fad2.tar.xz ilt-3c1c392ab177566f09d11a380210e1937741fad2.zip |
Swap GLEW for more modern glad
Diffstat (limited to 'test/test-lib.cpp')
-rw-r--r-- | test/test-lib.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test-lib.cpp b/test/test-lib.cpp index 73ed53a..aaf6292 100644 --- a/test/test-lib.cpp +++ b/test/test-lib.cpp @@ -4,8 +4,8 @@ #include <boost/test/data/test_case.hpp> #include <boost/test/unit_test.hpp> -#include <GL/glew.h> #include <glArrays.h> +#include <glad/gl.h> #include <set> std::set<GLuint> active; |