17 lines
277 B
C
17 lines
277 B
C
|
|
#ifndef ARC_OPENGL_WINDOW_H_
|
||
|
|
#define ARC_OPENGL_WINDOW_H_
|
||
|
|
|
||
|
|
#ifdef ARC_GLFW_WINDOW
|
||
|
|
|
||
|
|
#define GLEW_STATIC
|
||
|
|
#include <GL/glew.h>
|
||
|
|
|
||
|
|
#include "arc/graphics/window.h"
|
||
|
|
#include <GLFW/glfw3.h>
|
||
|
|
|
||
|
|
typedef GLFWwindow ARC_WindowType;
|
||
|
|
|
||
|
|
#endif // !ARC_GLFW_WINDOW
|
||
|
|
|
||
|
|
#endif // !ARC_GLFW_WINDOW_H_
|