aboutsummaryrefslogtreecommitdiff
path: root/common/scaler.h
diff options
context:
space:
mode:
authorMax Horn2003-09-21 12:10:32 +0000
committerMax Horn2003-09-21 12:10:32 +0000
commit74e3448a4cdb49154e7fe794bff90226ef4b0828 (patch)
tree174478175f74282dcacf3016713e0b868c86a16d /common/scaler.h
parent9af8549c9552fd94ac8e4c4f47f0263b8aa27512 (diff)
downloadscummvm-rg350-74e3448a4cdb49154e7fe794bff90226ef4b0828.tar.gz
scummvm-rg350-74e3448a4cdb49154e7fe794bff90226ef4b0828.tar.bz2
scummvm-rg350-74e3448a4cdb49154e7fe794bff90226ef4b0828.zip
added HQ3x filter
svn-id: r10346
Diffstat (limited to 'common/scaler.h')
-rw-r--r--common/scaler.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/common/scaler.h b/common/scaler.h
index 50cf196582..73ab6662ed 100644
--- a/common/scaler.h
+++ b/common/scaler.h
@@ -21,7 +21,7 @@
#ifndef COMMON_SCALER_H
#define COMMON_SCALER_H
-extern int Init_2xSaI (uint32 BitFormat);
+extern void InitScalers(uint32 BitFormat);
typedef void ScalerProc(const uint8 *srcPtr, uint32 srcPitch,
uint8 *dstPtr, uint32 dstPitch, int width, int height);
@@ -40,6 +40,7 @@ DECLARE_SCALER(Normal2x);
DECLARE_SCALER(Normal3x);
DECLARE_SCALER(TV2x);
DECLARE_SCALER(DotMatrix);
+DECLARE_SCALER(HQ3x);
FORCEINLINE int real2Aspect(int y) {
return y + (y + 1) / 5;
@@ -64,6 +65,7 @@ enum {
GFX_ADVMAME3X = 7,
GFX_TV2X = 8,
GFX_DOTMATRIX = 9,
+ GFX_HQ3X = 10,
GFX_BILINEAR = 12, // OpenGL backend