aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/sdl/raspberrypi/raspberrypi.cpp
diff options
context:
space:
mode:
authorvanfanel2015-12-04 16:05:19 +0100
committerJohannes Schickel2015-12-08 21:41:40 +0100
commit66dbb7f485899a555093e1b909d65c97589a5681 (patch)
treec0676a438132c1790a82659ad934d466d121db0f /backends/platform/sdl/raspberrypi/raspberrypi.cpp
parent8981279580ea97a0456d6b4ac4c0cc5095861912 (diff)
downloadscummvm-rg350-66dbb7f485899a555093e1b909d65c97589a5681.tar.gz
scummvm-rg350-66dbb7f485899a555093e1b909d65c97589a5681.tar.bz2
scummvm-rg350-66dbb7f485899a555093e1b909d65c97589a5681.zip
SDL/DISPMANX: Remove dispmanx graphics output.
Diffstat (limited to 'backends/platform/sdl/raspberrypi/raspberrypi.cpp')
-rw-r--r--backends/platform/sdl/raspberrypi/raspberrypi.cpp42
1 files changed, 0 insertions, 42 deletions
diff --git a/backends/platform/sdl/raspberrypi/raspberrypi.cpp b/backends/platform/sdl/raspberrypi/raspberrypi.cpp
deleted file mode 100644
index 206203d82e..0000000000
--- a/backends/platform/sdl/raspberrypi/raspberrypi.cpp
+++ /dev/null
@@ -1,42 +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.
- *
- */
-
-#if defined(DISPMANX)
-
-#include "backends/platform/sdl/raspberrypi/raspberrypi.h"
-#include "backends/graphics/dispmanxsdl/dispmanxsdl-graphics.h"
-
-void OSystem_SDL_RaspberryPi::initBackend() {
- // Create the events manager
- if (_eventSource == 0)
- _eventSource = new SdlEventSource();
-
- // Create the graphics manager
- if (_graphicsManager == 0) {
- _graphicsManager = new DispmanXSdlGraphicsManager(_eventSource, _window);
- }
-
- // Call parent implementation of this method
- OSystem_POSIX::initBackend();
-}
-
-#endif