diff options
author | Max Horn | 2002-07-16 11:09:28 +0000 |
---|---|---|
committer | Max Horn | 2002-07-16 11:09:28 +0000 |
commit | 6e33e626fccf1e32e851b364d1a1d516e1b700b2 (patch) | |
tree | 1d61f3948af722b41f1fd149479a1c00e3ffcd3a /mac | |
parent | a94f9de525219a17409181d408c06cb929314c3d (diff) | |
download | scummvm-rg350-6e33e626fccf1e32e851b364d1a1d516e1b700b2.tar.gz scummvm-rg350-6e33e626fccf1e32e851b364d1a1d516e1b700b2.tar.bz2 scummvm-rg350-6e33e626fccf1e32e851b364d1a1d516e1b700b2.zip |
renamed some variables for clarity; added scaler.h
svn-id: r4562
Diffstat (limited to 'mac')
-rw-r--r-- | mac/mac.cpp | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/mac/mac.cpp b/mac/mac.cpp index 5b5450cc83..7a6397069a 100644 --- a/mac/mac.cpp +++ b/mac/mac.cpp @@ -30,6 +30,7 @@ //#include "mp3_cd.h" #include "gui.h" //#include "gameDetector.h" +#include "scaler.h" #define MAX(a,b) (((a)<(b)) ? (b) : (a)) #define MIN(a,b) (((a)>(b)) ? (b) : (a)) @@ -204,22 +205,6 @@ private: void * parameter; }; -int Init_2xSaI (uint32 BitFormat); -void _2xSaI(uint8 *srcPtr, uint32 srcPitch, uint8 *deltaPtr, uint8 *dstPtr, - uint32 dstPitch, int width, int height); -void Super2xSaI(uint8 *srcPtr, uint32 srcPitch, uint8 *deltaPtr, - uint8 *dstPtr, uint32 dstPitch, int width, int height); -void SuperEagle(uint8 *srcPtr, uint32 srcPitch, uint8 *deltaPtr, - uint8 *dstPtr, uint32 dstPitch, int width, int height); -void AdvMame2x(uint8 *srcPtr, uint32 srcPitch, uint8 *null, - uint8 *dstPtr, uint32 dstPitch, int width, int height); -void Normal1x(uint8 *srcPtr, uint32 srcPitch, uint8 *null, - uint8 *dstPtr, uint32 dstPitch, int width, int height); -void Normal2x(uint8 *srcPtr, uint32 srcPitch, uint8 *null, - uint8 *dstPtr, uint32 dstPitch, int width, int height); -void Normal3x(uint8 *srcPtr, uint32 srcPitch, uint8 *null, - uint8 *dstPtr, uint32 dstPitch, int width, int height); - KeyMap fKeyMap; Boolean CommandKeyDown() |