From d02762b6dc35e1564e5d1cc7458458f824f251f9 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 29 Jun 2014 23:02:41 +0300 Subject: Add imagegraphics for drawing into texture/image. For now it empty. --- src/render/imagegraphics.cpp | 71 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 src/render/imagegraphics.cpp (limited to 'src/render/imagegraphics.cpp') 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 . + */ + +#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 -- cgit v1.2.3-70-g09d2