os/graphics/graphicsdeviceinterface/directgdiadaptation/swsrc/swdirectgdiengine.cpp
Update contrib.
1 // Copyright (c) 2007-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.
16 #include "swdirectgdiengine.h"
17 #include <bitdraworigin.h>
18 #include <bitdrawinterfaceid.h>
23 @param aPenArray The new array.
25 void CSwDirectGdiEngine::SetPenArray(TInt* aPenArray)
28 iPenArray = aPenArray;
32 Destroys the current pen array.
34 void CSwDirectGdiEngine::ResetPenArray()
41 Truncates the given rectangle.
43 @param aRect The rectangle to truncate.
45 void CSwDirectGdiEngine::TruncateRect(TRect& aRect)
47 TInt width = iDrawDevice->SizeInPixels().iWidth << 4;
48 TInt height = iDrawDevice->SizeInPixels().iHeight << 4;
50 aRect.iTl.iX = Min(aRect.iTl.iX,width);
51 aRect.iTl.iY = Min(aRect.iTl.iY,height);
52 aRect.iBr.iX = Min(aRect.iBr.iX,width);
53 aRect.iBr.iY = Min(aRect.iBr.iY,height);
58 aRect.iTl.iX = Max(aRect.iTl.iX,width);
59 aRect.iTl.iY = Max(aRect.iTl.iY,height);
60 aRect.iBr.iX = Max(aRect.iBr.iX,width);
61 aRect.iBr.iY = Max(aRect.iBr.iY,height);
65 @see MDirectGdiEngine::GetInterface()
67 TInt CSwDirectGdiEngine::GetInterface(TUid aInterfaceId, TAny*& aInterface)
70 TInt err = KErrNotSupported;
73 switch (aInterfaceId.iUid)
75 case KDrawDeviceOriginInterfaceID:
77 aInterface= (MDrawDeviceOrigin*)this;