diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-08-31 20:38:42 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-08-31 20:38:42 +0300 |
commit | b310c51796d1632aeefc834dc0e931c52f909a41 (patch) | |
tree | 1332b627664b8450cc3fdbbd2995ce0ffc67b724 /src/resources | |
parent | 07c2392f2a7a7fa90d1c0dfe97dbd3bf29fdfad1 (diff) | |
download | plus-b310c51796d1632aeefc834dc0e931c52f909a41.tar.gz plus-b310c51796d1632aeefc834dc0e931c52f909a41.tar.bz2 plus-b310c51796d1632aeefc834dc0e931c52f909a41.tar.xz plus-b310c51796d1632aeefc834dc0e931c52f909a41.zip |
move render classes into render dir.
Diffstat (limited to 'src/resources')
-rw-r--r-- | src/resources/ambientlayer.cpp | 2 | ||||
-rw-r--r-- | src/resources/atlasmanager.cpp | 3 | ||||
-rw-r--r-- | src/resources/fboinfo.h | 2 | ||||
-rw-r--r-- | src/resources/image.cpp | 6 | ||||
-rw-r--r-- | src/resources/openglimagehelper.cpp | 7 | ||||
-rw-r--r-- | src/resources/subimage.cpp | 6 |
6 files changed, 14 insertions, 12 deletions
diff --git a/src/resources/ambientlayer.cpp b/src/resources/ambientlayer.cpp index ba10cbdcc..c619aafd9 100644 --- a/src/resources/ambientlayer.cpp +++ b/src/resources/ambientlayer.cpp @@ -21,7 +21,7 @@ #include "resources/ambientlayer.h" -#include "graphics.h" +#include "render/graphics.h" #include "resources/image.h" #include "resources/imagehelper.h" diff --git a/src/resources/atlasmanager.cpp b/src/resources/atlasmanager.cpp index 015ad0c93..b0ac91540 100644 --- a/src/resources/atlasmanager.cpp +++ b/src/resources/atlasmanager.cpp @@ -27,7 +27,8 @@ #include "client.h" #include "graphicsmanager.h" #include "logger.h" -#include "surfacegraphics.h" + +#include "render/surfacegraphics.h" #include "utils/mathutils.h" #include "utils/physfsrwops.h" diff --git a/src/resources/fboinfo.h b/src/resources/fboinfo.h index 20fef77e3..faf1696b2 100644 --- a/src/resources/fboinfo.h +++ b/src/resources/fboinfo.h @@ -24,7 +24,7 @@ #include "main.h" #ifdef USE_OPENGL -#include "graphics.h" +#include "render/graphics.h" #include "resources/fboinfo.h" diff --git a/src/resources/image.cpp b/src/resources/image.cpp index 71c29ba53..1ed19629c 100644 --- a/src/resources/image.cpp +++ b/src/resources/image.cpp @@ -26,9 +26,9 @@ #include "resources/resourcemanager.h" #ifdef USE_OPENGL -#include "mobileopenglgraphics.h" -#include "normalopenglgraphics.h" -#include "safeopenglgraphics.h" +#include "render/mobileopenglgraphics.h" +#include "render/normalopenglgraphics.h" +#include "render/safeopenglgraphics.h" #endif #include "client.h" diff --git a/src/resources/openglimagehelper.cpp b/src/resources/openglimagehelper.cpp index abf05e800..7fa779fa8 100644 --- a/src/resources/openglimagehelper.cpp +++ b/src/resources/openglimagehelper.cpp @@ -29,9 +29,10 @@ #include "graphicsmanager.h" #include "logger.h" #include "mgl.h" -#include "mobileopenglgraphics.h" -#include "normalopenglgraphics.h" -#include "safeopenglgraphics.h" + +#include "render/mobileopenglgraphics.h" +#include "render/normalopenglgraphics.h" +#include "render/safeopenglgraphics.h" #include "resources/dye.h" #include "resources/image.h" diff --git a/src/resources/subimage.cpp b/src/resources/subimage.cpp index d3dec55d5..f9e8aea83 100644 --- a/src/resources/subimage.cpp +++ b/src/resources/subimage.cpp @@ -23,9 +23,9 @@ #include "resources/subimage.h" #ifdef USE_OPENGL -#include "mobileopenglgraphics.h" -#include "normalopenglgraphics.h" -#include "safeopenglgraphics.h" +#include "render/mobileopenglgraphics.h" +#include "render/normalopenglgraphics.h" +#include "render/safeopenglgraphics.h" #endif #ifdef DEBUG_IMAGES |