aboutsummaryrefslogtreecommitdiff
path: root/backends/graphics/default/default-graphics.cpp
diff options
context:
space:
mode:
authorAlejandro Marzini2010-06-08 23:44:05 +0000
committerAlejandro Marzini2010-06-08 23:44:05 +0000
commit4fe0b4e1ad9d44f65cc6c144f1998cbc17913797 (patch)
treef28ed7d8d72fb11957e2b8809128d164b43d879e /backends/graphics/default/default-graphics.cpp
parent7ea78b10364d34ae607a9a1da00e4d42ad691aa1 (diff)
downloadscummvm-rg350-4fe0b4e1ad9d44f65cc6c144f1998cbc17913797.tar.gz
scummvm-rg350-4fe0b4e1ad9d44f65cc6c144f1998cbc17913797.tar.bz2
scummvm-rg350-4fe0b4e1ad9d44f65cc6c144f1998cbc17913797.zip
Renamed and moved DefaultGraphicsManager to NullGraphicsManager. Added pure virtual class GraphicsManager.
svn-id: r49528
Diffstat (limited to 'backends/graphics/default/default-graphics.cpp')
-rw-r--r--backends/graphics/default/default-graphics.cpp40
1 files changed, 0 insertions, 40 deletions
diff --git a/backends/graphics/default/default-graphics.cpp b/backends/graphics/default/default-graphics.cpp
deleted file mode 100644
index 9683eff9ac..0000000000
--- a/backends/graphics/default/default-graphics.cpp
+++ /dev/null
@@ -1,40 +0,0 @@
-/* ScummVM - Graphic Adventure Engine
- *
- * ScummVM is the legal property of its developers, whose names
- * are too numerous to list here. Please refer to the COPYRIGHT
- * file distributed with this source distribution.
- *
- * 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 (at your option) 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, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- * $URL$
- * $Id$
- *
- */
-
-#include "backends/graphics/default/default-graphics.h"
-
-bool DefaultGraphicsManager::hasGraphicsFeature(OSystem::Feature f) {
- return false;
-}
-
-bool DefaultGraphicsManager::getGraphicsFeatureState(OSystem::Feature f) {
- return false;
-}
-
-static const OSystem::GraphicsMode s_noGraphicsModes[] = { {0, 0, 0} };
-
-const OSystem::GraphicsMode *DefaultGraphicsManager::getSupportedGraphicsModes() {
- return s_noGraphicsModes;
-}