graphicsdeviceinterface/screendriver/swins/SCCOL16.CPP
changeset 0 5d03bc08d59c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/graphicsdeviceinterface/screendriver/swins/SCCOL16.CPP	Tue Feb 02 01:47:50 2010 +0200
@@ -0,0 +1,106 @@
+// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
+// All rights reserved.
+// This component and the accompanying materials are made available
+// under the terms of "Eclipse Public License v1.0"
+// which accompanies this distribution, and is available
+// at the URL "http://www.eclipse.org/legal/epl-v10.html".
+//
+// Initial Contributors:
+// Nokia Corporation - initial contribution.
+//
+// Contributors:
+//
+// Description:
+//
+
+#include "SCDRAW.H"
+#include "_WININC.H"
+
+TInt CDrawSixteenBppScreenBitmap::InitScreen()
+	{
+	TRect drawRect;
+	GetDrawRect(drawRect);
+    RWindows* window = ::WindowHandler(iScreenNo);
+	window->iDisplayMode = DisplayMode();
+	window->iEpocBitmapSize = drawRect.Size();
+	window->iEpocBitmapLinePitch = (iScanLineWords*4);
+
+	return KErrNone;
+	}
+
+TBool CDrawSixteenBppScreenBitmap::SetOrientation(TOrientation aOrientation)
+	{
+	if (aOrientation == iEmulatorOrientation)
+		return ETrue;
+
+	SetScreenOrientation(aOrientation);
+	iEmulatorOrientation = aOrientation;
+	iOrientation = aOrientation ;
+	return ETrue;
+	}
+
+void CDrawSixteenBppScreenBitmap::UpdateRect(const TRect& aRect) const
+	{
+	ASSERT(aRect.iTl.iX >= 0 && aRect.iTl.iY >= 0);
+#if defined(_DEBUG)
+	if (iOrientation&1)
+		{
+		ASSERT(aRect.iBr.iX <= iSize.iHeight);
+		ASSERT(aRect.iBr.iY <= iSize.iWidth);
+		}
+	else
+		{
+		ASSERT(aRect.iBr.iX <= iSize.iWidth);
+		ASSERT(aRect.iBr.iY <= iSize.iHeight);
+		}
+#endif
+	TInt scanLineLen=iLongWidth;
+	TInt srcPixelStep=1;
+	TPoint srcStart(aRect.iTl);
+	switch(iOrientation)
+		{
+	case CFbsDrawDevice::EOrientationRotated90:
+		srcPixelStep=scanLineLen;
+		scanLineLen=-1;
+		srcStart.iX=iSize.iWidth-1-aRect.iTl.iY;
+		srcStart.iY=aRect.iTl.iX;
+		break;
+	case CFbsDrawDevice::EOrientationRotated180:
+		srcPixelStep=-1;
+		scanLineLen=-scanLineLen;
+		srcStart.iX=iSize.iWidth-1-aRect.iTl.iX;
+		srcStart.iY=iSize.iHeight-1-aRect.iTl.iY;
+		break;
+	case CFbsDrawDevice::EOrientationRotated270:
+		srcPixelStep=-scanLineLen;
+		scanLineLen=1;
+		srcStart.iX=aRect.iTl.iY;
+		srcStart.iY=iSize.iHeight-1-aRect.iTl.iX;
+		break;
+		}
+	TUint16* srcePtr = CDrawSixteenBppBitmapCommon::PixelAddress(srcStart.iX,srcStart.iY);
+	TUint16* srcePtrLimit = srcePtr + aRect.Width()*srcPixelStep;
+	TInt rowMax = aRect.iTl.iY+aRect.Height();
+	for(TInt row = aRect.iTl.iY; row < rowMax; row++)
+		{
+		TUint16* tempSrcePtr = srcePtr;
+		TUint8* destPixel = WinPixelAddress(aRect.iTl.iX,row);
+
+		while (tempSrcePtr != srcePtrLimit)
+			{
+			destPixel[0]=TUint8((*tempSrcePtr&0x001f)<<3);
+			destPixel[0]=TUint8(destPixel[0]+(destPixel[0]>>5));
+			destPixel[1]=TUint8((*tempSrcePtr&0x07e0)>>3);
+			destPixel[1]=TUint8(destPixel[1]+(destPixel[1]>>6));
+			destPixel[2]=TUint8((*tempSrcePtr&0xf800)>>8);
+			destPixel[2]=TUint8(destPixel[2]+(destPixel[2]>>5));
+			tempSrcePtr+=srcPixelStep;
+			
+			destPixel += 3;
+			}
+
+		srcePtr += scanLineLen;
+		srcePtrLimit += scanLineLen;
+		}
+	}
+