Skip to content

Commit

Permalink
xrRenderPC_GL: replace includes for cross-platform
Browse files Browse the repository at this point in the history
  • Loading branch information
eagleivg committed Jul 12, 2018
1 parent 5984659 commit 77b4b2b
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src/Layers/xrRenderPC_GL/stdafx.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,14 @@

#define GLEW_STATIC
#include <GL/glew.h>
#include <gl/GL.h>
#include <gl/GLU.h>
#include <gl/glext.h>
#include "SDL_opengl.h"
#include <GL/glu.h>
#include "SDL_opengl_glext.h"
#if defined(WINDOWS)
#include <gl/wglext.h>
#elif defined(LINUX)
#include <GL/glxext.h>
#endif

#include "Layers/xrRender/xrD3DDefs.h"
#include "Layers/xrRender/Debug/dxPixEventWrapper.h"
Expand All @@ -38,8 +42,8 @@
#include "xrEngine/Render.h"
#include "Common/_d3d_extensions.h"
#include "xrEngine/IGame_Level.h"
#include "Layers/xrRender/blenders/blender.h"
#include "Layers/xrRender/blenders/blender_clsid.h"
#include "Layers/xrRender/blenders/Blender.h"
#include "Layers/xrRender/blenders/Blender_CLSID.h"
#include "Layers/xrRender/xrRender_console.h"
#include "rgl.h"

Expand Down

0 comments on commit 77b4b2b

Please sign in to comment.