aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/ds/arm9/source/blitters.h
diff options
context:
space:
mode:
authorBertrand Augereau2006-10-02 18:41:39 +0000
committerBertrand Augereau2006-10-02 18:41:39 +0000
commit22756edd6f148ea98e6e71eb375641c07fe91c25 (patch)
tree90c0592448c5e73b6063ff40341ecc34bdbecab5 /backends/platform/ds/arm9/source/blitters.h
parent9118a731dce8d0118f28e9a5d96f1feae519cdbd (diff)
downloadscummvm-rg350-22756edd6f148ea98e6e71eb375641c07fe91c25.tar.gz
scummvm-rg350-22756edd6f148ea98e6e71eb375641c07fe91c25.tar.bz2
scummvm-rg350-22756edd6f148ea98e6e71eb375641c07fe91c25.zip
NDS : Naive C++ scanline 320*16 -> 256*16 rescaler code
svn-id: r24074
Diffstat (limited to 'backends/platform/ds/arm9/source/blitters.h')
-rw-r--r--backends/platform/ds/arm9/source/blitters.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/backends/platform/ds/arm9/source/blitters.h b/backends/platform/ds/arm9/source/blitters.h
index c1252d2ed7..21c6279224 100644
--- a/backends/platform/ds/arm9/source/blitters.h
+++ b/backends/platform/ds/arm9/source/blitters.h
@@ -26,6 +26,7 @@ namespace DS {
void asmDrawStripToScreen(int height, int width, byte const* text, byte const* src, byte* dst,
int vsPitch, int vmScreenWidth, int textSurfacePitch);
void asmCopy8Col(byte* dst, int dstPitch, const byte* src, int height);
+void Rescale_320x1555Scanline_To_256x1555Scanline(u16* dest, const u16* src);
}