remove dead code leftover

svn-id: r42615
This commit is contained in:
Kostas Nakos 2009-07-19 14:46:11 +00:00
parent 5b16cab619
commit c313396aac

View File

@ -53,15 +53,6 @@ void PocketPCPortraitTemplate(const uint8 *srcPtr, uint32 srcPitch, uint8 *dstPt
}
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.