Exclude glew from manual build duo to errors. Using precompiled packages.

This commit is contained in:
IlyaShurupov 2024-01-10 15:47:47 +03:00
parent f7fd0c5942
commit 81e16e1c50
5 changed files with 12 additions and 10 deletions

View file

@ -1,6 +1,7 @@
#include "Window.hpp"
// -------- OpenGL -------- //
#define GLEW_STATIC
#include <GL/glew.h>
#include "WindowContext.hpp"
@ -97,4 +98,4 @@ void Graphics::Canvas::proc() {
void Graphics::Canvas::draw() {
nvgEndFrame(mContext->vg);
}
}