diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2020-07-07 23:12:04 -0300 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2020-07-07 23:12:04 -0300 |
commit | ab30228b1a57053323363674fa7f137c0329a180 (patch) | |
tree | 50849a3680d61a2428665cc1035f1f4215870acb /Project/Text.h | |
parent | 6c0e98a2727d07e1fbb38b78c27d68e98ad09465 (diff) | |
download | PSP.git-ab30228b1a57053323363674fa7f137c0329a180.tar.gz PSP.git-ab30228b1a57053323363674fa7f137c0329a180.tar.xz PSP.git-ab30228b1a57053323363674fa7f137c0329a180.zip |
Voltage heat map implemented
Voltage heat map implemented using modern OpenGL =)
New external library required:
-GLEW
-GLFW
-GLM (incorporeted at the source)
Old memory leaks fixed =)
Diffstat (limited to 'Project/Text.h')
-rw-r--r-- | Project/Text.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Project/Text.h b/Project/Text.h index b625271..8dac879 100644 --- a/Project/Text.h +++ b/Project/Text.h @@ -18,10 +18,12 @@ #ifndef TEXT_H #define TEXT_H +#include <GL/glew.h> + #ifdef _MSC_VER #include <windows.h> #endif -#include <GL/gl.h> +//#include <GL/gl.h> #include <wx/dcmemory.h> #include "GraphicalElement.h" |