Tatooine
glincludes.h
Go to the documentation of this file.
1#ifndef TATOOINE_GL_GL_INCLUDES_H
2#define TATOOINE_GL_GL_INCLUDES_H
3//==============================================================================
4#define GLFW_INCLUDE_NONE
5#include <glad/glad.h>
6
7#if defined(_WIN32) || defined(WIN32)
8#include <glad/glad_wgl.h>
9#else
10#include <glad/glad_egl.h>
11#endif
12//------------------------------------------------------------------------------
13#include <GLFW/glfw3.h>
14//------------------------------------------------------------------------------
15#include <GL/gl.h>
16//------------------------------------------------------------------------------
17#ifdef None
18#undef None
19#endif
20//------------------------------------------------------------------------------
21#ifdef Complex
22#undef Complex
23#endif
24//==============================================================================
25#endif