[Scummvm-cvs-logs] SF.net SVN: scummvm:[42615] scummvm/trunk/backends/platform/wince/CEScaler. cpp

knakos at users.sourceforge.net knakos at users.sourceforge.net
Sun Jul 19 16:46:11 CEST 2009


Revision: 42615
          http://scummvm.svn.sourceforge.net/scummvm/?rev=42615&view=rev
Author:   knakos
Date:     2009-07-19 14:46:11 +0000 (Sun, 19 Jul 2009)

Log Message:
-----------
remove dead code leftover

Modified Paths:
--------------
    scummvm/trunk/backends/platform/wince/CEScaler.cpp

Modified: scummvm/trunk/backends/platform/wince/CEScaler.cpp
===================================================================
--- scummvm/trunk/backends/platform/wince/CEScaler.cpp	2009-07-19 14:03:35 UTC (rev 42614)
+++ scummvm/trunk/backends/platform/wince/CEScaler.cpp	2009-07-19 14:46:11 UTC (rev 42615)
@@ -53,15 +53,6 @@
 }
 MAKE_WRAPPER(PocketPCPortrait)
 
-void PocketPCRawPortrait(const uint8 *srcPtr, uint32 srcPitch, uint8 *dstPtr, uint32 dstPitch, int width, int height) {
-
-	while (height--) {
-		memcpy(dstPtr, srcPtr, width*sizeof(uint16_t));
-		srcPtr += srcPitch;
-		dstPtr += dstPitch;
-	}
-}
-
 // Our version of an aspect scaler. Main difference is the out-of-place
 // operation, omitting a straight blit step the sdl backend does. Also,
 // tests show unaligned access errors with the stock aspect scaler.


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list