summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-09-16 01:31:18 +0300
committerAndrei Karas <akaras@inbox.ru>2013-09-16 01:31:18 +0300
commit7f9e66e34ef7ef9aa3d77ff0e4fb01d6ba81b85c (patch)
treeb6f1043ea753674459c9b595e55d4202e7f94231 /src
parent40febfccbf3dd499bd857ce07a839808061432c5 (diff)
downloadplus-7f9e66e34ef7ef9aa3d77ff0e4fb01d6ba81b85c.tar.gz
plus-7f9e66e34ef7ef9aa3d77ff0e4fb01d6ba81b85c.tar.bz2
plus-7f9e66e34ef7ef9aa3d77ff0e4fb01d6ba81b85c.tar.xz
plus-7f9e66e34ef7ef9aa3d77ff0e4fb01d6ba81b85c.zip
remove unused includes from render files.
Diffstat (limited to 'src')
-rw-r--r--src/gui/setup_touch.cpp1
-rw-r--r--src/gui/statuswindow.cpp2
-rw-r--r--src/gui/widgets/characterdisplay.cpp2
-rw-r--r--src/render/graphics.cpp4
-rw-r--r--src/render/graphics.h4
-rw-r--r--src/render/mobileopenglgraphics.cpp3
-rw-r--r--src/render/normalopenglgraphics.cpp3
-rw-r--r--src/render/nullopenglgraphics.cpp6
-rw-r--r--src/render/renderers.h2
-rw-r--r--src/render/safeopenglgraphics.cpp4
-rw-r--r--src/render/sdl2graphics.cpp4
-rw-r--r--src/render/sdl2softwaregraphics.cpp4
-rw-r--r--src/render/sdlgraphics.cpp4
-rw-r--r--src/render/sdlgraphics.h3
-rw-r--r--src/render/surfacegraphics.cpp9
-rw-r--r--src/render/surfacegraphics.h1
16 files changed, 9 insertions, 47 deletions
diff --git a/src/gui/setup_touch.cpp b/src/gui/setup_touch.cpp
index de1f6191d..f930c8a8f 100644
--- a/src/gui/setup_touch.cpp
+++ b/src/gui/setup_touch.cpp
@@ -23,6 +23,7 @@
#include "gui/widgets/layouthelper.h"
#include "gui/widgets/scrollarea.h"
+#include "utils/gettext.h"
#include "utils/stringutils.h"
#include "debug.h"
diff --git a/src/gui/statuswindow.cpp b/src/gui/statuswindow.cpp
index 1740f8613..3e265ffab 100644
--- a/src/gui/statuswindow.cpp
+++ b/src/gui/statuswindow.cpp
@@ -49,6 +49,8 @@
#include "utils/gettext.h"
+#include <SDL_timer.h>
+
#include "debug.h"
class AttrDisplay : public Container
diff --git a/src/gui/widgets/characterdisplay.cpp b/src/gui/widgets/characterdisplay.cpp
index 65fe36252..65812ba4b 100644
--- a/src/gui/widgets/characterdisplay.cpp
+++ b/src/gui/widgets/characterdisplay.cpp
@@ -32,6 +32,8 @@
#include "utils/gettext.h"
+#include <SDL_mouse.h>
+
#include "debug.h"
CharacterDisplay::CharacterDisplay(const Widget2 *const widget,
diff --git a/src/render/graphics.cpp b/src/render/graphics.cpp
index 107573d1b..3cad42a3b 100644
--- a/src/render/graphics.cpp
+++ b/src/render/graphics.cpp
@@ -26,14 +26,12 @@
#include "configuration.h"
#include "graphicsmanager.h"
-#include "graphicsvertexes.h"
#include "logger.h"
+#include "resources/image.h"
#include "resources/imagehelper.h"
#include "resources/openglimagehelper.h"
-#include <guichan/sdl/sdlpixel.hpp>
-
#ifdef USE_OPENGL
#ifdef __APPLE__
#include <OpenGL/OpenGL.h>
diff --git a/src/render/graphics.h b/src/render/graphics.h
index 16cce7ae6..aad3c2bed 100644
--- a/src/render/graphics.h
+++ b/src/render/graphics.h
@@ -23,7 +23,7 @@
#ifndef RENDER_GRAPHICS_H
#define RENDER_GRAPHICS_H
-#include "SDL.h"
+#include "SDL_video.h"
#include "sdlshared.h"
@@ -37,9 +37,7 @@
class Image;
class ImageCollection;
class ImageVertexes;
-class MapLayer;
-struct SDL_Surface;
struct SDL_Window;
static const int defaultScreenWidth = 800;
diff --git a/src/render/mobileopenglgraphics.cpp b/src/render/mobileopenglgraphics.cpp
index d8ed1bc3a..18f036f48 100644
--- a/src/render/mobileopenglgraphics.cpp
+++ b/src/render/mobileopenglgraphics.cpp
@@ -35,9 +35,6 @@
#include "resources/openglimagehelper.h"
#include "utils/sdlcheckutils.h"
-#include "utils/stringutils.h"
-
-#include <SDL.h>
#include "debug.h"
diff --git a/src/render/normalopenglgraphics.cpp b/src/render/normalopenglgraphics.cpp
index 56393d0da..f6bbf4311 100644
--- a/src/render/normalopenglgraphics.cpp
+++ b/src/render/normalopenglgraphics.cpp
@@ -34,9 +34,6 @@
#include "resources/openglimagehelper.h"
#include "utils/sdlcheckutils.h"
-#include "utils/stringutils.h"
-
-#include <SDL.h>
#include "debug.h"
diff --git a/src/render/nullopenglgraphics.cpp b/src/render/nullopenglgraphics.cpp
index b3027a5c2..f7909b7bf 100644
--- a/src/render/nullopenglgraphics.cpp
+++ b/src/render/nullopenglgraphics.cpp
@@ -25,18 +25,12 @@
#include "render/nullopenglgraphics.h"
-#include "configuration.h"
#include "graphicsmanager.h"
#include "graphicsvertexes.h"
-#include "logger.h"
#include "resources/image.h"
#include "resources/openglimagehelper.h"
-#include "utils/stringutils.h"
-
-#include <SDL.h>
-
#include "debug.h"
GLuint NullOpenGLGraphics::mLastImage = 0;
diff --git a/src/render/renderers.h b/src/render/renderers.h
index 2a6af27d2..3ce1fdb81 100644
--- a/src/render/renderers.h
+++ b/src/render/renderers.h
@@ -21,8 +21,6 @@
#ifndef RENDER_RENDERERS_H
#define RENDER_RENDERERS_H
-#include "utils/gettext.h"
-
enum RenderType
{
RENDER_SOFTWARE = 0,
diff --git a/src/render/safeopenglgraphics.cpp b/src/render/safeopenglgraphics.cpp
index 9f9d0cd13..7f0e375b6 100644
--- a/src/render/safeopenglgraphics.cpp
+++ b/src/render/safeopenglgraphics.cpp
@@ -27,16 +27,12 @@
#include "configuration.h"
#include "graphicsmanager.h"
-#include "graphicsvertexes.h"
-#include "logger.h"
#include "resources/image.h"
#include "resources/openglimagehelper.h"
#include "utils/sdlcheckutils.h"
-#include <SDL.h>
-
#include "debug.h"
GLuint SafeOpenGLGraphics::mLastImage = 0;
diff --git a/src/render/sdl2graphics.cpp b/src/render/sdl2graphics.cpp
index c8974df29..76cde005a 100644
--- a/src/render/sdl2graphics.cpp
+++ b/src/render/sdl2graphics.cpp
@@ -34,11 +34,9 @@
#include "resources/imagehelper.h"
#include "resources/sdl2imagehelper.h"
-#include <guichan/sdl/sdlpixel.hpp>
-
#include "utils/sdlcheckutils.h"
-#include <SDL.h>
+#include <guichan/sdl/sdlpixel.hpp>
#include "debug.h"
diff --git a/src/render/sdl2softwaregraphics.cpp b/src/render/sdl2softwaregraphics.cpp
index c1df5b3d0..c60961a40 100644
--- a/src/render/sdl2softwaregraphics.cpp
+++ b/src/render/sdl2softwaregraphics.cpp
@@ -34,12 +34,8 @@
#include "resources/imagehelper.h"
#include "resources/sdl2softwareimagehelper.h"
-#include <guichan/sdl/sdlpixel.hpp>
-
#include "utils/sdlcheckutils.h"
-#include <SDL.h>
-
#include "debug.h"
#if SDL_BYTEORDER == SDL_LIL_ENDIAN
diff --git a/src/render/sdlgraphics.cpp b/src/render/sdlgraphics.cpp
index e194c51f8..4df797762 100644
--- a/src/render/sdlgraphics.cpp
+++ b/src/render/sdlgraphics.cpp
@@ -26,12 +26,8 @@
#include "main.h"
-#include "configuration.h"
#include "graphicsmanager.h"
#include "graphicsvertexes.h"
-#include "logger.h"
-
-#include "resources/imagehelper.h"
#include "utils/sdlcheckutils.h"
diff --git a/src/render/sdlgraphics.h b/src/render/sdlgraphics.h
index 28393d251..79c2c1c5a 100644
--- a/src/render/sdlgraphics.h
+++ b/src/render/sdlgraphics.h
@@ -35,9 +35,6 @@
class Image;
class ImageCollection;
class ImageVertexes;
-class MapLayer;
-
-struct SDL_Surface;
/**
* A central point of control for graphics.
diff --git a/src/render/surfacegraphics.cpp b/src/render/surfacegraphics.cpp
index 6075a9891..879d44f60 100644
--- a/src/render/surfacegraphics.cpp
+++ b/src/render/surfacegraphics.cpp
@@ -24,16 +24,9 @@
#include "main.h"
-#include "configuration.h"
-#include "graphicsmanager.h"
-#include "graphicsvertexes.h"
-#include "logger.h"
-
-#include "resources/imagehelper.h"
+#include "resources/image.h"
#include "resources/surfaceimagehelper.h"
-#include <guichan/sdl/sdlpixel.hpp>
-
#include "debug.h"
SurfaceGraphics::SurfaceGraphics() :
diff --git a/src/render/surfacegraphics.h b/src/render/surfacegraphics.h
index 06dffd4ed..cda29cc05 100644
--- a/src/render/surfacegraphics.h
+++ b/src/render/surfacegraphics.h
@@ -30,7 +30,6 @@
class Image;
class ImageCollection;
class ImageVertexes;
-class MapLayer;
struct SDL_Surface;