GoldFish Engine
Quite simple and lightweight game engine
Loading...
Searching...
No Matches
gf_opengl.h
Go to the documentation of this file.
1
8#ifndef __GF_OPENGL_H__
9#define __GF_OPENGL_H__
10
11#ifdef _WIN32
12#include <windows.h>
13#endif
14#include <GL/gl.h>
15#if defined(USE_GLX)
16#include <X11/Xlib.h>
17#include <X11/Xatom.h>
18#include <GL/glx.h>
19#elif defined(USE_WGL)
20/* Should require nothing... for now? */
21#elif defined(USE_GLFW)
22#include <GLFW/glfw3.h>
23#endif
24
25#endif