Update contrib.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
19 TInt CDrawTwoBppScreenBitmap::InitScreen()
22 GetDrawRect(drawRect);
23 RWindows* window = ::WindowHandler(iScreenNo);
24 window->iDisplayMode = DisplayMode();
25 window->iEpocBitmapSize = drawRect.Size();
26 window->iEpocBitmapLinePitch = (iScanLineWords*4);
31 void CDrawTwoBppScreenBitmap::OrientationsAvailable(TBool aOrientation[4])
33 aOrientation[EOrientationNormal] = ETrue;
34 aOrientation[EOrientationRotated90] = EFalse;
35 aOrientation[EOrientationRotated180] = EFalse;
36 aOrientation[EOrientationRotated270] = EFalse;
39 void CDrawTwoBppScreenBitmap::UpdateRect(const TRect& aRect) const
41 ASSERT(aRect.iTl.iX >= 0 && aRect.iTl.iY >= 0);
42 ASSERT(aRect.iBr.iX <= iSize.iWidth);
43 ASSERT(aRect.iBr.iY <= iSize.iHeight);
45 const TUint8 gray4lookup[4] = {0, 85, 170, 255};
47 TInt lx = aRect.iTl.iX & ~0xf;
48 TInt rx = (aRect.iBr.iX + 15) & ~0xf;
50 TUint8* srcePtr = ((TUint8*)(ScanLine(aRect.iTl.iY))) + (lx / 4);
51 TUint8* srcePtrLimit = srcePtr + ((rx - lx) / 4);
53 TInt byteWidth = iScanLineWords * 4;
55 for(TInt row = aRect.iTl.iY; row < aRect.iBr.iY; row++)
57 TUint8* tempSrcePtr = srcePtr;
58 TUint8* destPixel = WinPixelAddress(lx,row);
60 while (tempSrcePtr < srcePtrLimit)
62 TUint8 pixelValue1 = *tempSrcePtr++;
63 TUint8 pixelValue2 = TUint8((pixelValue1 >> 2) & 0x03);
64 TUint8 pixelValue3 = TUint8((pixelValue1 >> 4) & 0x03);
65 TUint8 pixelValue4 = TUint8((pixelValue1 >> 6) & 0x03);
68 TUint8 pixelGray = gray4lookup[pixelValue1];
69 destPixel[0] = pixelGray;
70 destPixel[1] = pixelGray;
71 destPixel[2] = pixelGray;
73 pixelGray = gray4lookup[pixelValue2];
74 destPixel[3] = pixelGray;
75 destPixel[4] = pixelGray;
76 destPixel[5] = pixelGray;
78 pixelGray = gray4lookup[pixelValue3];
79 destPixel[6] = pixelGray;
80 destPixel[7] = pixelGray;
81 destPixel[8] = pixelGray;
83 pixelGray = gray4lookup[pixelValue4];
84 destPixel[9] = pixelGray;
85 destPixel[10] = pixelGray;
86 destPixel[11] = pixelGray;
92 srcePtrLimit += byteWidth;