summaryrefslogtreecommitdiff
path: root/src/render/imagegraphics.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-06-29 23:02:41 +0300
committerAndrei Karas <akaras@inbox.ru>2014-06-29 23:02:41 +0300
commitd02762b6dc35e1564e5d1cc7458458f824f251f9 (patch)
treec4ba5c106eab0561d7fd82b5cc076ecae3306823 /src/render/imagegraphics.cpp
parentbe877e12682b6f0e697b024f96a1dcaf4d0c8206 (diff)
downloadplus-d02762b6dc35e1564e5d1cc7458458f824f251f9.tar.gz
plus-d02762b6dc35e1564e5d1cc7458458f824f251f9.tar.bz2
plus-d02762b6dc35e1564e5d1cc7458458f824f251f9.tar.xz
plus-d02762b6dc35e1564e5d1cc7458458f824f251f9.zip
Add imagegraphics for drawing into texture/image.
For now it empty.
Diffstat (limited to 'src/render/imagegraphics.cpp')
-rw-r--r--src/render/imagegraphics.cpp71
1 files changed, 71 insertions, 0 deletions
diff --git a/src/render/imagegraphics.cpp b/src/render/imagegraphics.cpp
new file mode 100644
index 000000000..8f9cd8943
--- /dev/null
+++ b/src/render/imagegraphics.cpp
@@ -0,0 +1,71 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2004-2009 The Mana World Development Team
+ * Copyright (C) 2009-2010 The Mana Developers
+ * Copyright (C) 2011-2014 The ManaPlus Developers
+ *
+ * This file is part of The ManaPlus Client.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifdef USE_OPENGL
+
+#include "render/imagegraphics.h"
+
+#include "main.h"
+
+#include "resources/image.h"
+
+#include "debug.h"
+
+ImegeGraphics::ImegeGraphics() :
+ Graphics(),
+ mTarget(nullptr)
+{
+ mOpenGL = RENDER_SOFTWARE;
+ mName = "Image";
+}
+
+ImegeGraphics::~ImegeGraphics()
+{
+}
+
+bool ImegeGraphics::drawImage(const Image *const image A_UNUSED,
+ int dstX A_UNUSED, int dstY A_UNUSED)
+{
+ // for now not implimented
+ return false;
+}
+
+bool ImegeGraphics::copyImage(const Image *const image,
+ int dstX A_UNUSED, int dstY A_UNUSED)
+{
+ if (!mTarget || !image)
+ return false;
+
+ return false;
+}
+
+void ImegeGraphics::drawImageCached(const Image *const image,
+ int x, int y)
+{
+ drawImage(image, x, y);
+}
+
+void ImegeGraphics::completeCache()
+{
+}
+
+#endif // USE_OPENGL