From 26dc4c24256472898f4388de73699a5f54f4a2cf Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Thu, 19 Aug 2010 12:43:37 +0000 Subject: DINGOO: new port. Patch #3039277 svn-id: r52210 --- backends/platform/dingux/dingux.cpp | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 backends/platform/dingux/dingux.cpp (limited to 'backends/platform/dingux/dingux.cpp') diff --git a/backends/platform/dingux/dingux.cpp b/backends/platform/dingux/dingux.cpp new file mode 100644 index 0000000000..a253e8bce1 --- /dev/null +++ b/backends/platform/dingux/dingux.cpp @@ -0,0 +1,34 @@ + +#include "backends/platform/dingux/dingux.h" + +#if defined(DINGUX) + +bool OSystem_SDL_Dingux::hasFeature(Feature f) { + return + (f == kFeatureAspectRatioCorrection) || + (f == kFeatureCursorHasPalette); +} + +void OSystem_SDL_Dingux::setFeatureState(Feature f, bool enable) { + switch (f) { + case kFeatureAspectRatioCorrection: + setAspectRatioCorrection(enable); + break; + default: + break; + } +} + +bool OSystem_SDL_Dingux::getFeatureState(Feature f) { + assert(_transactionMode == kTransactionNone); + + switch (f) { + case kFeatureAspectRatioCorrection: + return _videoMode.aspectRatioCorrection; + default: + return false; + } +} + +#endif + -- cgit v1.2.3 From edea88cf54056d4c903977525d19071097efdd93 Mon Sep 17 00:00:00 2001 From: John Willis Date: Mon, 23 Aug 2010 19:49:51 +0000 Subject: dingux: Add standard ScummVM copyright headers to the dingux backend. svn-id: r52309 --- backends/platform/dingux/dingux.cpp | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'backends/platform/dingux/dingux.cpp') diff --git a/backends/platform/dingux/dingux.cpp b/backends/platform/dingux/dingux.cpp index a253e8bce1..cdf10600ce 100644 --- a/backends/platform/dingux/dingux.cpp +++ b/backends/platform/dingux/dingux.cpp @@ -1,3 +1,27 @@ +/* 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/platform/dingux/dingux.h" -- cgit v1.2.3