aboutsummaryrefslogtreecommitdiff
path: root/graphics/scaler
diff options
context:
space:
mode:
authorMax Horn2010-03-08 10:29:00 +0000
committerMax Horn2010-03-08 10:29:00 +0000
commit28c6c600d45b4ce16f13d08cfc7c9fbcc8461a63 (patch)
treee76ab0466cd13402b343b63ed814bc38d0774717 /graphics/scaler
parent9fb27a26f86dcf888cb26cc1b4622c5a10de3fb5 (diff)
downloadscummvm-rg350-28c6c600d45b4ce16f13d08cfc7c9fbcc8461a63.tar.gz
scummvm-rg350-28c6c600d45b4ce16f13d08cfc7c9fbcc8461a63.tar.bz2
scummvm-rg350-28c6c600d45b4ce16f13d08cfc7c9fbcc8461a63.zip
Move some aspect ratio related stuff to graphics/scaler/aspect.h
svn-id: r48186
Diffstat (limited to 'graphics/scaler')
-rw-r--r--graphics/scaler/aspect.cpp2
-rw-r--r--graphics/scaler/aspect.h63
2 files changed, 64 insertions, 1 deletions
diff --git a/graphics/scaler/aspect.cpp b/graphics/scaler/aspect.cpp
index 4b3f194244..5f8f5f8279 100644
--- a/graphics/scaler/aspect.cpp
+++ b/graphics/scaler/aspect.cpp
@@ -24,7 +24,7 @@
*/
#include "graphics/scaler/intern.h"
-#include "graphics/scaler.h"
+#include "graphics/scaler/aspect.h"
#define kVeryFastAndUglyAspectMode 0 // No interpolation at all, but super-fast
diff --git a/graphics/scaler/aspect.h b/graphics/scaler/aspect.h
new file mode 100644
index 0000000000..ebe922ef00
--- /dev/null
+++ b/graphics/scaler/aspect.h
@@ -0,0 +1,63 @@
+/* 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$
+ */
+
+#ifndef GRAPHICS_SCALER_ASPECT_H
+#define GRAPHICS_SCALER_ASPECT_H
+
+#include "common/scummsys.h"
+
+/**
+ * TODO: explain
+ */
+FORCEINLINE int real2Aspect(int y) {
+ return y + (y + 1) / 5;
+}
+
+/**
+ * TODO: explain
+ */
+FORCEINLINE int aspect2Real(int y) {
+ return (y * 5 + 4) / 6;
+}
+
+/**
+ * TODO: explain
+ */
+void makeRectStretchable(int &x, int &y, int &w, int &h);
+
+/**
+ * TODO: explain
+ */
+int stretch200To240(uint8 *buf,
+ uint32 pitch,
+ int width,
+ int height,
+ int srcX,
+ int srcY,
+ int origSrcY);
+
+// TODO: Move Normal2xAspect & PocketPCLandscapeAspect here;
+// also rename the latter to Normal1xAspect
+
+#endif