aboutsummaryrefslogtreecommitdiff
path: root/graphics/conversion.h
diff options
context:
space:
mode:
authorJohannes Schickel2012-07-14 03:35:54 +0200
committerJohannes Schickel2012-08-28 02:27:47 +0200
commit05d24e892c15a0bc2a8a923927125098704f42db (patch)
treedcb74bab63269361ff0e557357511946445d06f7 /graphics/conversion.h
parent4b05031042387ad9118690a77e1681165296bdec (diff)
downloadscummvm-rg350-05d24e892c15a0bc2a8a923927125098704f42db.tar.gz
scummvm-rg350-05d24e892c15a0bc2a8a923927125098704f42db.tar.bz2
scummvm-rg350-05d24e892c15a0bc2a8a923927125098704f42db.zip
GRAPHICS: Clean up crossBlit a bit.
Diffstat (limited to 'graphics/conversion.h')
-rw-r--r--graphics/conversion.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/graphics/conversion.h b/graphics/conversion.h
index 6babc763e2..c25f413fab 100644
--- a/graphics/conversion.h
+++ b/graphics/conversion.h
@@ -66,8 +66,10 @@ inline static void RGB2YUV(byte r, byte g, byte b, byte &y, byte &u, byte &v) {
* destination format have the same bytedepth.
*
*/
-bool crossBlit(byte *dst, const byte *src, int dstpitch, int srcpitch,
- int w, int h, const Graphics::PixelFormat &dstFmt, const Graphics::PixelFormat &srcFmt);
+bool crossBlit(byte *dst, const byte *src,
+ const uint dstPitch, const uint srcPitch,
+ const uint w, const uint h,
+ const Graphics::PixelFormat &dstFmt, const Graphics::PixelFormat &srcFmt);
} // End of namespace Graphics