BACKENDS: Replace GLEW with GLAD, part of PR #3463

This commit is contained in:
Cameron Cawley 2021-06-19 13:58:31 +01:00 committed by Paweł Kołodziejski
parent 43d87cb029
commit 21b0d6ded1
30 changed files with 8604 additions and 597 deletions

View file

@ -336,7 +336,6 @@ int main(int argc, char *argv[]) {
setFeatureBuildState("opengl_game", setup.features, false);
setFeatureBuildState("opengl_shaders", setup.features, false);
setFeatureBuildState("opengles2", setup.features, false);
setFeatureBuildState("glew", setup.features, false);
}
// Disable engines for which we are missing dependencies
@ -1083,7 +1082,6 @@ const Feature s_features[] = {
{ "libcurl", "USE_LIBCURL", true, true, "libcurl support" },
{ "sdlnet", "USE_SDL_NET", true, true, "SDL_net support" },
{ "discord", "USE_DISCORD", true, false, "Discord support" },
{ "glew", "USE_GLEW", true, true, "GLEW support" },
// Feature flags
{ "bink", "USE_BINK", false, true, "Bink video support" },
@ -1646,6 +1644,7 @@ void ProjectProvider::createProject(BuildSetup &setup) {
in.push_back(setup.srcDir + "/LICENSES/COPYING.LUA");
in.push_back(setup.srcDir + "/LICENSES/COPYING.MIT");
in.push_back(setup.srcDir + "/LICENSES/COPYING.TINYGL");
in.push_back(setup.srcDir + "/LICENSES/COPYING.GLAD");
in.push_back(setup.srcDir + "/COPYRIGHT");
in.push_back(setup.srcDir + "/NEWS.md");
in.push_back(setup.srcDir + "/README.md");