mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2024-11-25 17:53:47 +00:00
8472718fb7
This untangles some of the gigantic kitchen sink headers in an attempt to split things into smaller files. Also don't include gl.h, glext.h, windows.h, and other such nonsense *everywhere*. Lots of cleanups on the way too. More dead/unused code removal. Remove incrFlag(), decrFlag() Lua functions.
22 lines
268 B
C
22 lines
268 B
C
#ifndef BBGE_RENDERBASE_H
|
|
#define BBGE_RENDERBASE_H
|
|
|
|
#include "SDL.h"
|
|
|
|
#define GL_GLEXT_LEGACY 1
|
|
#include "gl.h"
|
|
|
|
#ifdef _WINDOWS_
|
|
#error windows.h was included! euuugh!
|
|
#endif
|
|
|
|
#ifdef APIENTRY
|
|
#undef APIENTRY
|
|
#endif
|
|
|
|
#ifdef WINGDIAPI
|
|
#undef WINGDIAPI
|
|
#endif
|
|
|
|
|
|
#endif
|