summaryrefslogtreecommitdiff
path: root/src/graphicsmanager.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-12-20 16:32:22 +0300
committerAndrei Karas <akaras@inbox.ru>2015-12-20 16:32:22 +0300
commitdcd7364559e20e7d89ffeee0740b60a65c8d5362 (patch)
treed53978130f4b5121041a1e0ef22afebee69e6f6b /src/graphicsmanager.cpp
parent45561c45f374cf8511b755da74c1786be6a3f85c (diff)
downloadplus-dcd7364559e20e7d89ffeee0740b60a65c8d5362.tar.gz
plus-dcd7364559e20e7d89ffeee0740b60a65c8d5362.tar.bz2
plus-dcd7364559e20e7d89ffeee0740b60a65c8d5362.tar.xz
plus-dcd7364559e20e7d89ffeee0740b60a65c8d5362.zip
Move OpenGL functions related files into opengl directory.
Diffstat (limited to 'src/graphicsmanager.cpp')
-rw-r--r--src/graphicsmanager.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/graphicsmanager.cpp b/src/graphicsmanager.cpp
index d04588456..f814df04b 100644
--- a/src/graphicsmanager.cpp
+++ b/src/graphicsmanager.cpp
@@ -33,7 +33,7 @@
#endif // USE_SDL2
#elif defined(__native_client__)
#include <GL/Regal.h>
-#include "render/naclglfunctions.h"
+#include "render/opengl/naclglfunctions.h"
#else // ANDROID
#include <GL/glx.h>
#endif // ANDROID
@@ -46,14 +46,15 @@
#include "settings.h"
#ifdef USE_OPENGL
-#include "render/mglcheck.h"
-#include "render/mgl.h"
-#include "render/mglemu.h"
#include "render/mobileopengl2graphics.h"
#include "render/mobileopenglgraphics.h"
#include "render/modernopenglgraphics.h"
#include "render/normalopenglgraphics.h"
#include "render/safeopenglgraphics.h"
+
+#include "render/opengl/mgl.h"
+#include "render/opengl/mglcheck.h"
+#include "render/opengl/mglemu.h"
#endif
#include "render/renderers.h"
#include "render/sdlgraphics.h"
@@ -66,7 +67,7 @@
#include "resources/mobileopenglscreenshothelper.h"
#include "resources/safeopenglimagehelper.h"
#endif // ANDROID
-#include "render/mglfunctions.h"
+#include "render/opengl/mglfunctions.h"
#endif // USE_OPENGL
#include "resources/sdlimagehelper.h"