sl@0
|
1 |
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@test
|
sl@0
|
19 |
@internalComponent - Internal Symbian test code
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#include "tdrawresource.h"
|
sl@0
|
23 |
#include <graphics/sgimage.h>
|
sl@0
|
24 |
#include <graphics/sgutils.h>
|
sl@0
|
25 |
#include <graphics/directgdidrawablesource.h>
|
sl@0
|
26 |
#include <graphics/sgresourceinternal.h>
|
sl@0
|
27 |
#include <graphics/wsdrawresource.h>
|
sl@0
|
28 |
|
sl@0
|
29 |
|
sl@0
|
30 |
__WS_CONSTRUCT_STEP__(DrawResource);
|
sl@0
|
31 |
|
sl@0
|
32 |
|
sl@0
|
33 |
#if defined(__X86GCC__)
|
sl@0
|
34 |
extern "C" TInt atexit(void (*function)(void))
|
sl@0
|
35 |
{
|
sl@0
|
36 |
return KErrNone;
|
sl@0
|
37 |
}
|
sl@0
|
38 |
#endif
|
sl@0
|
39 |
|
sl@0
|
40 |
//
|
sl@0
|
41 |
// class CTestWsGraphicsContext
|
sl@0
|
42 |
//
|
sl@0
|
43 |
CTestWsGraphicsContext* CTestWsGraphicsContext::NewL(RDirectGdiImageTarget& aTarget)
|
sl@0
|
44 |
{
|
sl@0
|
45 |
CTestWsGraphicsContext* self = new(ELeave) CTestWsGraphicsContext;
|
sl@0
|
46 |
CleanupStack::PushL(self);
|
sl@0
|
47 |
self->ConstructL(aTarget);
|
sl@0
|
48 |
CleanupStack::Pop(self);
|
sl@0
|
49 |
return self;
|
sl@0
|
50 |
}
|
sl@0
|
51 |
|
sl@0
|
52 |
void CTestWsGraphicsContext::ConstructL(RDirectGdiImageTarget& aTarget)
|
sl@0
|
53 |
{
|
sl@0
|
54 |
CDirectGdiDriver* driver = CDirectGdiDriver::Static();
|
sl@0
|
55 |
User::LeaveIfNull(driver);
|
sl@0
|
56 |
iContext = CDirectGdiContext::NewL(*driver);
|
sl@0
|
57 |
TInt err = iContext->Activate(aTarget);
|
sl@0
|
58 |
User::LeaveIfError(err);
|
sl@0
|
59 |
}
|
sl@0
|
60 |
|
sl@0
|
61 |
CTestWsGraphicsContext::~CTestWsGraphicsContext()
|
sl@0
|
62 |
{
|
sl@0
|
63 |
delete iContext;
|
sl@0
|
64 |
}
|
sl@0
|
65 |
|
sl@0
|
66 |
TAny* CTestWsGraphicsContext::ResolveObjectInterface(TUint aTypeId)
|
sl@0
|
67 |
{
|
sl@0
|
68 |
switch(aTypeId)
|
sl@0
|
69 |
{
|
sl@0
|
70 |
case MWsDrawableSourceProvider::EWsObjectInterfaceId:
|
sl@0
|
71 |
return static_cast<MWsDrawableSourceProvider*>(this);
|
sl@0
|
72 |
}
|
sl@0
|
73 |
return NULL;
|
sl@0
|
74 |
|
sl@0
|
75 |
}
|
sl@0
|
76 |
|
sl@0
|
77 |
TInt CTestWsGraphicsContext::CreateDrawableSource(const TSgDrawableId& aDrawableId, TAny*& aSource)
|
sl@0
|
78 |
{
|
sl@0
|
79 |
TRAPD(err, DoCreateDrawableSourceL(aDrawableId, aSource));
|
sl@0
|
80 |
return err;
|
sl@0
|
81 |
}
|
sl@0
|
82 |
|
sl@0
|
83 |
void CTestWsGraphicsContext::DoCreateDrawableSourceL(const TSgDrawableId& aDrawableId, TAny*& aSource)
|
sl@0
|
84 |
{
|
sl@0
|
85 |
CDirectGdiDriver* driver = CDirectGdiDriver::Static();
|
sl@0
|
86 |
if (!driver)
|
sl@0
|
87 |
{
|
sl@0
|
88 |
User::Leave(KErrNotReady);
|
sl@0
|
89 |
}
|
sl@0
|
90 |
RDirectGdiDrawableSource* drawableSource = new(ELeave) RDirectGdiDrawableSource(*driver);
|
sl@0
|
91 |
CleanupStack::PushL(drawableSource);
|
sl@0
|
92 |
RSgDrawable drawable;
|
sl@0
|
93 |
User::LeaveIfError(drawable.Open(aDrawableId, ESgDoNotRestrictUsage));
|
sl@0
|
94 |
CleanupClosePushL(drawable);
|
sl@0
|
95 |
User::LeaveIfError(drawableSource->Create(drawable));
|
sl@0
|
96 |
CleanupStack::PopAndDestroy();
|
sl@0
|
97 |
CleanupStack::Pop(drawableSource);
|
sl@0
|
98 |
aSource = drawableSource;
|
sl@0
|
99 |
}
|
sl@0
|
100 |
|
sl@0
|
101 |
void CTestWsGraphicsContext::CloseDrawableSource(TAny* aSource)
|
sl@0
|
102 |
{
|
sl@0
|
103 |
RDirectGdiDrawableSource* drawableSource = static_cast<RDirectGdiDrawableSource*>(aSource);
|
sl@0
|
104 |
drawableSource->Close();
|
sl@0
|
105 |
delete drawableSource;
|
sl@0
|
106 |
}
|
sl@0
|
107 |
|
sl@0
|
108 |
void CTestWsGraphicsContext::DrawResource(const TAny* aSource, const TPoint& aPos, CWindowGc::TGraphicsRotation aRotation)
|
sl@0
|
109 |
{
|
sl@0
|
110 |
const RDirectGdiDrawableSource* drawableSource = static_cast<const RDirectGdiDrawableSource*>(aSource);
|
sl@0
|
111 |
iContext->DrawResource(aPos, *drawableSource, (DirectGdi::TGraphicsRotation)aRotation);
|
sl@0
|
112 |
iPos = aPos;
|
sl@0
|
113 |
iRotation = (DirectGdi::TGraphicsRotation)aRotation;
|
sl@0
|
114 |
}
|
sl@0
|
115 |
|
sl@0
|
116 |
void CTestWsGraphicsContext::DrawResource(const TAny* aSource, const TRect& aRect, CWindowGc::TGraphicsRotation aRotation)
|
sl@0
|
117 |
{
|
sl@0
|
118 |
const RDirectGdiDrawableSource* drawableSource = static_cast<const RDirectGdiDrawableSource*>(aSource);
|
sl@0
|
119 |
iContext->DrawResource(aRect, *drawableSource, (DirectGdi::TGraphicsRotation)aRotation);
|
sl@0
|
120 |
iDestRect = aRect;
|
sl@0
|
121 |
iRotation = (DirectGdi::TGraphicsRotation)aRotation;
|
sl@0
|
122 |
}
|
sl@0
|
123 |
|
sl@0
|
124 |
void CTestWsGraphicsContext::DrawResource(const TAny* aSource, const TRect& aRectDest, const TRect& aRectSrc, CWindowGc::TGraphicsRotation aRotation)
|
sl@0
|
125 |
{
|
sl@0
|
126 |
const RDirectGdiDrawableSource* drawableSource = static_cast<const RDirectGdiDrawableSource*>(aSource);
|
sl@0
|
127 |
iContext->DrawResource(aRectDest, *drawableSource, aRectSrc, (DirectGdi::TGraphicsRotation)aRotation);
|
sl@0
|
128 |
iDestRect = aRectDest;
|
sl@0
|
129 |
iSrcRect = aRectSrc;
|
sl@0
|
130 |
iRotation = (DirectGdi::TGraphicsRotation)aRotation;
|
sl@0
|
131 |
}
|
sl@0
|
132 |
|
sl@0
|
133 |
void CTestWsGraphicsContext::DrawResource(const TAny* aSource, const TRect& aRect, const TDesC8& aParam)
|
sl@0
|
134 |
{
|
sl@0
|
135 |
const RDirectGdiDrawableSource* drawableSource = static_cast<const RDirectGdiDrawableSource*>(aSource);
|
sl@0
|
136 |
iContext->DrawResource(aRect, *drawableSource, aParam);
|
sl@0
|
137 |
iDestRect = aRect;
|
sl@0
|
138 |
}
|
sl@0
|
139 |
|
sl@0
|
140 |
|
sl@0
|
141 |
void CTestWsGraphicsContext::Clear()
|
sl@0
|
142 |
{
|
sl@0
|
143 |
iContext->Clear();
|
sl@0
|
144 |
}
|
sl@0
|
145 |
|
sl@0
|
146 |
//
|
sl@0
|
147 |
// class CTDrawResource
|
sl@0
|
148 |
//
|
sl@0
|
149 |
|
sl@0
|
150 |
CTDrawResource::CTDrawResource(CTestStep* aStep)
|
sl@0
|
151 |
: CTWsGraphicsBase(aStep)
|
sl@0
|
152 |
{
|
sl@0
|
153 |
}
|
sl@0
|
154 |
|
sl@0
|
155 |
CTDrawResource::~CTDrawResource()
|
sl@0
|
156 |
{
|
sl@0
|
157 |
iWindow.Close();
|
sl@0
|
158 |
delete iRefBitmap;
|
sl@0
|
159 |
delete iRotatedRefBitmap;
|
sl@0
|
160 |
delete iScaledBitmap;
|
sl@0
|
161 |
delete iScaledCroppedBitmap;
|
sl@0
|
162 |
delete iCopyBitmap;
|
sl@0
|
163 |
delete iBitmapWrongScreenNumber;
|
sl@0
|
164 |
|
sl@0
|
165 |
delete iWsGrapicResolver;
|
sl@0
|
166 |
delete iGraphicsCon;
|
sl@0
|
167 |
|
sl@0
|
168 |
iWsDrawableSource.Close();
|
sl@0
|
169 |
iImage.Close();
|
sl@0
|
170 |
iImageTarget.Close();
|
sl@0
|
171 |
iImageCollection.Close();
|
sl@0
|
172 |
|
sl@0
|
173 |
CDirectGdiDriver* dGdiDriver = CDirectGdiDriver::Static();
|
sl@0
|
174 |
if(dGdiDriver)
|
sl@0
|
175 |
{
|
sl@0
|
176 |
dGdiDriver->Close();
|
sl@0
|
177 |
}
|
sl@0
|
178 |
SgDriver::Close();
|
sl@0
|
179 |
}
|
sl@0
|
180 |
|
sl@0
|
181 |
void CTDrawResource::ConstructL()
|
sl@0
|
182 |
{
|
sl@0
|
183 |
//Constrcut and setup window to be drawn to
|
sl@0
|
184 |
iWindow = RWindow(TheClient->iWs);
|
sl@0
|
185 |
User::LeaveIfError(iWindow.Construct(*TheClient->iGroup->GroupWin(),ENullWsHandle));
|
sl@0
|
186 |
TSize iWinSize=TSize(TheClient->iScreen->SizeInPixels());
|
sl@0
|
187 |
iWindow.SetExtent(TPoint(0,0),iWinSize);
|
sl@0
|
188 |
iWindow.Activate();
|
sl@0
|
189 |
iWindow.BeginRedraw();
|
sl@0
|
190 |
iWindow.EndRedraw();
|
sl@0
|
191 |
|
sl@0
|
192 |
//Creates all reference and copy bitmaps required for all tests
|
sl@0
|
193 |
CreateReferenceAndCopyBitmapsL();
|
sl@0
|
194 |
|
sl@0
|
195 |
TInt err = CDirectGdiDriver::Open();
|
sl@0
|
196 |
User::LeaveIfError(err);
|
sl@0
|
197 |
err = SgDriver::Open();
|
sl@0
|
198 |
User::LeaveIfError(err);
|
sl@0
|
199 |
|
sl@0
|
200 |
//create image target
|
sl@0
|
201 |
CDirectGdiDriver* theDGdiDriver = CDirectGdiDriver::Static();
|
sl@0
|
202 |
if(!theDGdiDriver)
|
sl@0
|
203 |
{
|
sl@0
|
204 |
User::Leave(KErrNotReady);
|
sl@0
|
205 |
}
|
sl@0
|
206 |
TSgImageInfo info;
|
sl@0
|
207 |
info.iUsage = ESgUsageDirectGdiTarget | ESgUsageDirectGdiSource | ESgUsageCompositionSource;
|
sl@0
|
208 |
info.iPixelFormat = EUidPixelFormatRGB_565;
|
sl@0
|
209 |
info.iSizeInPixels = TSize(200, 200);
|
sl@0
|
210 |
info.iShareable = ETrue;
|
sl@0
|
211 |
const TInt KImageCount = 1;
|
sl@0
|
212 |
err = iImageCollection.Create(info, KImageCount);
|
sl@0
|
213 |
User::LeaveIfError(err);
|
sl@0
|
214 |
|
sl@0
|
215 |
err = iImageCollection.OpenImage(0, iImage);
|
sl@0
|
216 |
User::LeaveIfError(err);
|
sl@0
|
217 |
iImageTarget = RDirectGdiImageTarget(*theDGdiDriver);
|
sl@0
|
218 |
err = iImageTarget.Create(iImage);
|
sl@0
|
219 |
User::LeaveIfError(err);
|
sl@0
|
220 |
|
sl@0
|
221 |
// construction of image source
|
sl@0
|
222 |
RSgImage sgImage;
|
sl@0
|
223 |
CreateSgImageFromBitmapL(sgImage);
|
sl@0
|
224 |
CleanupClosePushL(sgImage);
|
sl@0
|
225 |
iWsDrawableSource = RWsDrawableSource(TheClient->iWs);
|
sl@0
|
226 |
User::LeaveIfError(iWsDrawableSource.Create(sgImage, TheClient->iScreen->GetScreenNumber()));
|
sl@0
|
227 |
|
sl@0
|
228 |
//Create dummy MWsGraphicResolver - required RemoteGc testing
|
sl@0
|
229 |
iWsGrapicResolver = new (ELeave) CWSGraphicsRes();
|
sl@0
|
230 |
|
sl@0
|
231 |
//Create dummy MWsGraphicsContext - required RemoteGc testing
|
sl@0
|
232 |
iGraphicsCon = CTestWsGraphicsContext::NewL(iImageTarget);
|
sl@0
|
233 |
|
sl@0
|
234 |
CleanupStack::PopAndDestroy(&sgImage);
|
sl@0
|
235 |
}
|
sl@0
|
236 |
|
sl@0
|
237 |
void CTDrawResource::RunTestCaseL(TInt aCurTestCase)
|
sl@0
|
238 |
{
|
sl@0
|
239 |
((CTDrawResourceStep*)iStep)->SetTestStepID(KUnknownSYMTestCaseIDName);
|
sl@0
|
240 |
switch(aCurTestCase)
|
sl@0
|
241 |
{
|
sl@0
|
242 |
case 1:
|
sl@0
|
243 |
((CTDrawResourceStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-DRAWRESOURCE-0001"));
|
sl@0
|
244 |
INFO_PRINTF1(_L("DrawResourcePos Test"));
|
sl@0
|
245 |
TestDrawResourcePos();
|
sl@0
|
246 |
break;
|
sl@0
|
247 |
case 2:
|
sl@0
|
248 |
((CTDrawResourceStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-DRAWRESOURCE-0002"));
|
sl@0
|
249 |
INFO_PRINTF1(_L("DrawResourceRect Test"));
|
sl@0
|
250 |
TestDrawResourceRect();
|
sl@0
|
251 |
break;
|
sl@0
|
252 |
case 3:
|
sl@0
|
253 |
((CTDrawResourceStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-DRAWRESOURCE-0003"));
|
sl@0
|
254 |
INFO_PRINTF1(_L("DrawResourceScale Test"));
|
sl@0
|
255 |
TestDrawResourceScale();
|
sl@0
|
256 |
break;
|
sl@0
|
257 |
case 4:
|
sl@0
|
258 |
((CTDrawResourceStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-DRAWRESOURCE-0004"));
|
sl@0
|
259 |
INFO_PRINTF1(_L("RWsDrawableSource Reference Counting Test"));
|
sl@0
|
260 |
TestRWsDrawableSourceReferenceCountingL();
|
sl@0
|
261 |
break;
|
sl@0
|
262 |
case 5:
|
sl@0
|
263 |
((CTDrawResourceStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-DRAWRESOURCE-0005"));
|
sl@0
|
264 |
INFO_PRINTF1(_L("RemoteGcDrawResourcePos Test"));
|
sl@0
|
265 |
TestRemoteGcDrawResourcePosL();
|
sl@0
|
266 |
break;
|
sl@0
|
267 |
case 6:
|
sl@0
|
268 |
((CTDrawResourceStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-DRAWRESOURCE-0006"));
|
sl@0
|
269 |
INFO_PRINTF1(_L("RemoteGcDrawResourceRect Test"));
|
sl@0
|
270 |
TestRemoteGcDrawResourceRectL();
|
sl@0
|
271 |
break;
|
sl@0
|
272 |
case 7:
|
sl@0
|
273 |
((CTDrawResourceStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-DRAWRESOURCE-0007"));
|
sl@0
|
274 |
INFO_PRINTF1(_L("RemoteGcDrawResourceScale Test"));
|
sl@0
|
275 |
TestRemoteGcDrawResourceScaleL();
|
sl@0
|
276 |
break;
|
sl@0
|
277 |
case 8:
|
sl@0
|
278 |
((CTDrawResourceStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-DRAWRESOURCE-0008"));
|
sl@0
|
279 |
INFO_PRINTF1(_L("DrawResourceScreens Test"));
|
sl@0
|
280 |
TestDrawResourceScreensL();
|
sl@0
|
281 |
break;
|
sl@0
|
282 |
case 9:
|
sl@0
|
283 |
((CTDrawResourceStep*)iStep)->SetTestStepID(_L("GRAPHICS-WSERV-TestCopyScreenToBitmapWithDifferentDisplayModes-0001"));
|
sl@0
|
284 |
INFO_PRINTF1(_L("CopyScreenToBitmapWithDifferentDisplayModes Test\n"));
|
sl@0
|
285 |
TestCopyScreenToBitmapWithDifferentDisplayModesL();
|
sl@0
|
286 |
break;
|
sl@0
|
287 |
case 10:
|
sl@0
|
288 |
((CTDrawResourceStep*)iStep)->SetTestStepID(KNotATestSYMTestCaseIDName);
|
sl@0
|
289 |
((CTDrawResourceStep*)iStep)->CloseTMSGraphicsStep();
|
sl@0
|
290 |
INFO_PRINTF1(_L("Test complete\n"));
|
sl@0
|
291 |
TestComplete();
|
sl@0
|
292 |
break;
|
sl@0
|
293 |
}
|
sl@0
|
294 |
((CTDrawResourceStep*)iStep)->RecordTestResultL();
|
sl@0
|
295 |
}
|
sl@0
|
296 |
|
sl@0
|
297 |
/**
|
sl@0
|
298 |
@SYMTestCaseID GRAPHICS-WSERV-DRAWRESOURCE-0001
|
sl@0
|
299 |
@SYMPREQ PREQ2095
|
sl@0
|
300 |
@SYMTestPriority High
|
sl@0
|
301 |
@SYMTestCaseDesc Draw RSgImage using DrawResource(const TPoint&, const RWsDrawableSource&, TGraphicsRotation)
|
sl@0
|
302 |
@SYMTestActions Draw to position (0,0) with default rotation (none)
|
sl@0
|
303 |
Draw to position (10,10) with 90 degrees rotation
|
sl@0
|
304 |
@SYMTestExpectedResults Drawn images should match reference CFbsBitmap
|
sl@0
|
305 |
*/
|
sl@0
|
306 |
void CTDrawResource::TestDrawResourcePos()
|
sl@0
|
307 |
{
|
sl@0
|
308 |
// Draw to TPoint(0,0) with EGraphicsRotationNone
|
sl@0
|
309 |
iWindow.BeginRedraw();
|
sl@0
|
310 |
TheGc->Activate(iWindow);
|
sl@0
|
311 |
TheGc->Clear();
|
sl@0
|
312 |
MWsDrawResource* dr = static_cast<MWsDrawResource*>(TheGc->Interface(KMWsDrawResourceInterfaceUid));
|
sl@0
|
313 |
TEST(dr != NULL);
|
sl@0
|
314 |
dr->DrawResource(KDestPoint, iWsDrawableSource, CWindowGc::EGraphicsRotationNone);
|
sl@0
|
315 |
TheGc->Deactivate();
|
sl@0
|
316 |
iWindow.EndRedraw();
|
sl@0
|
317 |
TheClient->iWs.Finish();
|
sl@0
|
318 |
TheClient->WaitForRedrawsToFinish();
|
sl@0
|
319 |
|
sl@0
|
320 |
//Copy the screen to the copy bitmap
|
sl@0
|
321 |
TheClient->iScreen->CopyScreenToBitmap(iCopyBitmap, KCopyTestRect);
|
sl@0
|
322 |
|
sl@0
|
323 |
//Compare the bitmaps
|
sl@0
|
324 |
INFO_PRINTF1(_L("Draw to TPoint(0,0) with EGraphicsRotationNone"));
|
sl@0
|
325 |
TBool compRes = CompareBitmapsByPixel(iCopyBitmap, iRefBitmap);
|
sl@0
|
326 |
TEST(compRes);
|
sl@0
|
327 |
|
sl@0
|
328 |
/*** Draw to position (10,10) with 90 degrees rotation ***/
|
sl@0
|
329 |
TPoint const KDestPoint2(10,10);
|
sl@0
|
330 |
iWindow.BeginRedraw();
|
sl@0
|
331 |
TheGc->Activate(iWindow);
|
sl@0
|
332 |
TheGc->Clear();
|
sl@0
|
333 |
dr->DrawResource(KDestPoint2, iWsDrawableSource, KTestRotation);
|
sl@0
|
334 |
TheGc->Deactivate();
|
sl@0
|
335 |
iWindow.EndRedraw();
|
sl@0
|
336 |
TheClient->iWs.Finish();
|
sl@0
|
337 |
TheClient->WaitForRedrawsToFinish();
|
sl@0
|
338 |
|
sl@0
|
339 |
//Copy the screen to the copy bitmap
|
sl@0
|
340 |
TheClient->iScreen->CopyScreenToBitmap(iCopyBitmap, TRect(KDestPoint2, KSourceSize));
|
sl@0
|
341 |
|
sl@0
|
342 |
//Compare the bitmaps
|
sl@0
|
343 |
INFO_PRINTF1(_L("Draw to position (10,10) with 90 degrees rotation"));
|
sl@0
|
344 |
compRes = CompareBitmapsByPixel(iCopyBitmap, iRotatedRefBitmap);
|
sl@0
|
345 |
TEST(compRes);
|
sl@0
|
346 |
}
|
sl@0
|
347 |
|
sl@0
|
348 |
/**
|
sl@0
|
349 |
@SYMTestCaseID GRAPHICS-WSERV-DRAWRESOURCE-0002
|
sl@0
|
350 |
@SYMPREQ PREQ2095
|
sl@0
|
351 |
@SYMTestPriority High
|
sl@0
|
352 |
@SYMTestCaseDesc Draw RSgImage using DrawResource(const TRect& , const RWsDrawableSource&, TGraphicsRotation aRotation)
|
sl@0
|
353 |
@SYMTestActions Draw to rect pos (10,10), rect size (60,60) with 90 degrees rotation
|
sl@0
|
354 |
@SYMTestExpectedResults Drawn images should match the reference CFbsBitmap
|
sl@0
|
355 |
*/
|
sl@0
|
356 |
void CTDrawResource::TestDrawResourceRect()
|
sl@0
|
357 |
{
|
sl@0
|
358 |
//Use DrawResource
|
sl@0
|
359 |
iWindow.BeginRedraw();
|
sl@0
|
360 |
TheGc->Activate(iWindow);
|
sl@0
|
361 |
TheGc->Clear();
|
sl@0
|
362 |
MWsDrawResource* dr = static_cast<MWsDrawResource*>(TheGc->Interface(KMWsDrawResourceInterfaceUid));
|
sl@0
|
363 |
TEST(dr != NULL);
|
sl@0
|
364 |
dr->DrawResource(KDestRect, iWsDrawableSource, KTestRotation);
|
sl@0
|
365 |
TheGc->Deactivate();
|
sl@0
|
366 |
iWindow.EndRedraw();
|
sl@0
|
367 |
TheClient->iWs.Finish();
|
sl@0
|
368 |
TheClient->WaitForRedrawsToFinish();
|
sl@0
|
369 |
|
sl@0
|
370 |
//Copy the screen to the copy bitmap
|
sl@0
|
371 |
TheClient->iScreen->CopyScreenToBitmap(iCopyBitmap, KCopyTestRect);
|
sl@0
|
372 |
|
sl@0
|
373 |
//Compare the bitmaps
|
sl@0
|
374 |
INFO_PRINTF1(_L("Draw to rect pos (10,10), rect size (60,60) with 90 degrees rotation"));
|
sl@0
|
375 |
TInt compRes = CompareBitmapsByPixel(iCopyBitmap, iScaledBitmap);
|
sl@0
|
376 |
TEST(compRes);
|
sl@0
|
377 |
}
|
sl@0
|
378 |
|
sl@0
|
379 |
/**
|
sl@0
|
380 |
@SYMTestCaseID GRAPHICS-WSERV-DRAWRESOURCE-0003
|
sl@0
|
381 |
@SYMPREQ PREQ2095
|
sl@0
|
382 |
@SYMTestPriority High
|
sl@0
|
383 |
@SYMTestCaseDesc Draw RSgImage using DrawResource(const TRect& , const RWsDrawableSource&, const TRect&, TGraphicsRotation aRotation)
|
sl@0
|
384 |
@SYMTestActions Draw the part of the source image (rect Pos (0,0), rect size(50,50))
|
sl@0
|
385 |
to rect pos(10,10), rect size(60,60) and and 90 degrees rotation
|
sl@0
|
386 |
@SYMTestExpectedResults Drawn images should match the reference CFbsBitmap
|
sl@0
|
387 |
*/
|
sl@0
|
388 |
void CTDrawResource::TestDrawResourceScale()
|
sl@0
|
389 |
{
|
sl@0
|
390 |
//Use DrawResource
|
sl@0
|
391 |
iWindow.BeginRedraw();
|
sl@0
|
392 |
TheGc->Activate(iWindow);
|
sl@0
|
393 |
TheGc->Clear();
|
sl@0
|
394 |
MWsDrawResource* dr = static_cast<MWsDrawResource*>(TheGc->Interface(KMWsDrawResourceInterfaceUid));
|
sl@0
|
395 |
TEST(dr != NULL);
|
sl@0
|
396 |
dr->DrawResource(KDestRect, iWsDrawableSource, KSourceRect, KTestRotation);
|
sl@0
|
397 |
TheGc->Deactivate();
|
sl@0
|
398 |
iWindow.EndRedraw();
|
sl@0
|
399 |
TheClient->iWs.Finish();
|
sl@0
|
400 |
TheClient->WaitForRedrawsToFinish();
|
sl@0
|
401 |
|
sl@0
|
402 |
//Copy the screen to the copy bitmap
|
sl@0
|
403 |
TheClient->iScreen->CopyScreenToBitmap(iCopyBitmap, KCopyTestRect);
|
sl@0
|
404 |
|
sl@0
|
405 |
//Compare the bitmaps
|
sl@0
|
406 |
INFO_PRINTF1(_L("Draw the part of the source image to rect pos(10,10), rect size(60,60) and and 90 degrees rotation"));
|
sl@0
|
407 |
TInt compRes = CompareBitmapsByPixel(iCopyBitmap, iScaledCroppedBitmap);
|
sl@0
|
408 |
TEST(compRes);
|
sl@0
|
409 |
}
|
sl@0
|
410 |
|
sl@0
|
411 |
/**
|
sl@0
|
412 |
@SYMTestCaseID GRAPHICS-WSERV-DRAWRESOURCE-0004
|
sl@0
|
413 |
@SYMPREQ PREQ2095
|
sl@0
|
414 |
@SYMTestPriority High
|
sl@0
|
415 |
@SYMTestCaseDesc Draw RSgImage using DrawResource(const TPoint&, const RWsDrawableSource&, TGraphicsRotation) after closing the image source
|
sl@0
|
416 |
@SYMTestActions Draw to position (0,0) with default rotation (none) after closing the image source
|
sl@0
|
417 |
@SYMTestExpectedResults Drawn image should match reference CFbsBitmap
|
sl@0
|
418 |
*/
|
sl@0
|
419 |
void CTDrawResource::TestRWsDrawableSourceReferenceCountingL()
|
sl@0
|
420 |
{
|
sl@0
|
421 |
// construction of image source
|
sl@0
|
422 |
RSgImage sgImage;
|
sl@0
|
423 |
CreateSgImageFromBitmapL(sgImage);
|
sl@0
|
424 |
CleanupClosePushL(sgImage);
|
sl@0
|
425 |
RWsDrawableSource drawableSource(TheClient->iWs);
|
sl@0
|
426 |
CleanupClosePushL(drawableSource);
|
sl@0
|
427 |
User::LeaveIfError(drawableSource.Create(sgImage, TheClient->iScreen->GetScreenNumber()));
|
sl@0
|
428 |
|
sl@0
|
429 |
//Draw using DrawResource
|
sl@0
|
430 |
iWindow.BeginRedraw();
|
sl@0
|
431 |
TheGc->Activate(iWindow);
|
sl@0
|
432 |
TheGc->Clear();
|
sl@0
|
433 |
MWsDrawResource* dr = static_cast<MWsDrawResource*>(TheGc->Interface(KMWsDrawResourceInterfaceUid));
|
sl@0
|
434 |
TEST(dr != NULL);
|
sl@0
|
435 |
dr->DrawResource(KDestPoint, drawableSource, CWindowGc::EGraphicsRotationNone);
|
sl@0
|
436 |
TheGc->Deactivate();
|
sl@0
|
437 |
iWindow.EndRedraw();
|
sl@0
|
438 |
|
sl@0
|
439 |
//Close the image source but this should not stop the source from being drawn
|
sl@0
|
440 |
drawableSource.Close();
|
sl@0
|
441 |
TheClient->iWs.Finish();
|
sl@0
|
442 |
TheClient->WaitForRedrawsToFinish();
|
sl@0
|
443 |
|
sl@0
|
444 |
//Copy the screen to the copy bitmap
|
sl@0
|
445 |
TheClient->iScreen->CopyScreenToBitmap(iCopyBitmap, KCopyTestRect);
|
sl@0
|
446 |
|
sl@0
|
447 |
//Compare the bitmaps
|
sl@0
|
448 |
INFO_PRINTF1(_L("Draw to TPoint(0,0) with EGraphicsRotationNone"));
|
sl@0
|
449 |
TBool compRes = CompareBitmapsByPixel(iCopyBitmap, iRefBitmap);
|
sl@0
|
450 |
TEST(compRes);
|
sl@0
|
451 |
|
sl@0
|
452 |
CleanupStack::PopAndDestroy(2, &sgImage);
|
sl@0
|
453 |
}
|
sl@0
|
454 |
|
sl@0
|
455 |
/**
|
sl@0
|
456 |
@SYMTestCaseID GRAPHICS-WSERV-DRAWRESOURCE-0005
|
sl@0
|
457 |
@SYMPREQ PREQ2095
|
sl@0
|
458 |
@SYMTestPriority High
|
sl@0
|
459 |
@SYMTestCaseDesc Draw RSgImage using RemotGc->DrawResource(const TPoint&, const RWsDrawableSource&, TGraphicsRotation)
|
sl@0
|
460 |
@SYMTestActions Record the draw resource commands using CRemoteGc and play the recorded commands on a window using
|
sl@0
|
461 |
Play(const TPoint&, const TRect&, RWsSession&, CWindowGc&) and then play the recorded commands using .
|
sl@0
|
462 |
Play(const TPoint&, const TRect&, const MWsGraphicResolver&, MWsGraphicsContext&).
|
sl@0
|
463 |
@SYMTestExpectedResults Drawn images should match reference CFbsBitmap and also values received by MWsGraphicsContext should
|
sl@0
|
464 |
match what was originally sent to DrawResource.
|
sl@0
|
465 |
*/
|
sl@0
|
466 |
void CTDrawResource::TestRemoteGcDrawResourcePosL()
|
sl@0
|
467 |
{
|
sl@0
|
468 |
const TRect KRemotGcSourceRect(0, 0, iWindow.Size().iWidth, iWindow.Size().iHeight);
|
sl@0
|
469 |
const TRegionFix<1> KClippingRegion(KRemotGcSourceRect);
|
sl@0
|
470 |
CWindowGc::TGraphicsRotation testRotation= CWindowGc::EGraphicsRotationNone;
|
sl@0
|
471 |
|
sl@0
|
472 |
//Create remote gc - required RemoteGc testing
|
sl@0
|
473 |
CRemoteGc* remoteGc = CRemoteGc::NewL(TheClient->iScreen);
|
sl@0
|
474 |
CleanupStack::PushL(remoteGc);
|
sl@0
|
475 |
|
sl@0
|
476 |
//Record draw messages
|
sl@0
|
477 |
remoteGc->ResetCommandBuffer();
|
sl@0
|
478 |
remoteGc->BeginDraw(KRemotGcSourceRect);
|
sl@0
|
479 |
MWsDrawResource* dr = static_cast<MWsDrawResource*>(remoteGc->Interface(KMWsDrawResourceInterfaceUid));
|
sl@0
|
480 |
TEST(dr != NULL);
|
sl@0
|
481 |
dr->DrawResource(KDestPoint, iWsDrawableSource, CWindowGc::EGraphicsRotationNone);
|
sl@0
|
482 |
remoteGc->EndDraw();
|
sl@0
|
483 |
|
sl@0
|
484 |
RWsGraphicMsgBuf msgBuf;
|
sl@0
|
485 |
CleanupClosePushL(msgBuf);
|
sl@0
|
486 |
//Externalize the captured commands from remote gc in to a buffer
|
sl@0
|
487 |
remoteGc->ExternalizeL(msgBuf, ETrue);
|
sl@0
|
488 |
//Create command buffer - required RemoteGc testing
|
sl@0
|
489 |
CCommandBuffer* cmdBuffer = CCommandBuffer::NewL();
|
sl@0
|
490 |
CleanupStack::PushL(cmdBuffer);
|
sl@0
|
491 |
//Internalize the buffer with captured commands (from CRemoteGC) in to CCommandBuffer
|
sl@0
|
492 |
cmdBuffer->InternalizeL(msgBuf.Pckg());
|
sl@0
|
493 |
|
sl@0
|
494 |
// Play stored commands using Play(const TPoint&, const TRect&, RWsSession&, CWindowGc&)
|
sl@0
|
495 |
remoteGc->ResetCommandBuffer();
|
sl@0
|
496 |
iWindow.Invalidate();
|
sl@0
|
497 |
iWindow.BeginRedraw();
|
sl@0
|
498 |
TheGc->Activate(iWindow);
|
sl@0
|
499 |
TheGc->Clear();
|
sl@0
|
500 |
cmdBuffer->Play(KPlayOffset, &KClippingRegion, KRemotGcSourceRect, TheClient->iWs, *TheGc);
|
sl@0
|
501 |
TheGc->Deactivate();
|
sl@0
|
502 |
iWindow.EndRedraw();
|
sl@0
|
503 |
TheClient->iWs.Finish();
|
sl@0
|
504 |
TheClient->WaitForRedrawsToFinish();
|
sl@0
|
505 |
|
sl@0
|
506 |
//Copy the screen to the copy bitmap
|
sl@0
|
507 |
TheClient->iScreen->CopyScreenToBitmap(iCopyBitmap, KCopyTestRect);
|
sl@0
|
508 |
|
sl@0
|
509 |
//Compare the bitmaps
|
sl@0
|
510 |
INFO_PRINTF1(_L("Using Play(const TPoint&, const TRect&, RWsSession&, CWindowGc&)"));
|
sl@0
|
511 |
TBool compRes = CompareBitmapsByPixel(iCopyBitmap, iRefBitmap);
|
sl@0
|
512 |
TEST(compRes);
|
sl@0
|
513 |
|
sl@0
|
514 |
// Play stored commands using Play(const TPoint&, const TRect&, const MWsGraphicResolver&, MWsGraphicsContext&)
|
sl@0
|
515 |
remoteGc->ResetCommandBuffer();
|
sl@0
|
516 |
iWindow.Invalidate();
|
sl@0
|
517 |
iWindow.BeginRedraw();
|
sl@0
|
518 |
TheGc->Activate(iWindow);
|
sl@0
|
519 |
TheGc->Clear();
|
sl@0
|
520 |
cmdBuffer->Play(KPlayOffset,&KClippingRegion,KRemotGcSourceRect,*iWsGrapicResolver,*iGraphicsCon);
|
sl@0
|
521 |
TheGc->Deactivate();
|
sl@0
|
522 |
iWindow.EndRedraw();
|
sl@0
|
523 |
TheClient->iWs.Finish();
|
sl@0
|
524 |
|
sl@0
|
525 |
//Compare the values received by CTestWsGraphicsContext and the values sent to it
|
sl@0
|
526 |
INFO_PRINTF1(_L("Using Play(const TPoint&, const TRect&, const MWsGraphicResolver&, MWsGraphicsContext&)"));
|
sl@0
|
527 |
TBool valuesSame = EFalse;
|
sl@0
|
528 |
CFbsBitmap* bmp;
|
sl@0
|
529 |
BitmapLC(bmp);
|
sl@0
|
530 |
compRes = CompareBitmapsByPixel(bmp, iRefBitmap);
|
sl@0
|
531 |
CleanupStack::PopAndDestroy(bmp);
|
sl@0
|
532 |
|
sl@0
|
533 |
if((iGraphicsCon->iPos == KDestPoint) && (compRes)
|
sl@0
|
534 |
&& (reinterpret_cast<TInt&>(iGraphicsCon->iRotation)==reinterpret_cast<TInt&>(testRotation)))
|
sl@0
|
535 |
valuesSame = ETrue;
|
sl@0
|
536 |
TEST(valuesSame);
|
sl@0
|
537 |
CleanupStack::PopAndDestroy(3, remoteGc);
|
sl@0
|
538 |
}
|
sl@0
|
539 |
|
sl@0
|
540 |
/**
|
sl@0
|
541 |
@SYMTestCaseID GRAPHICS-WSERV-DRAWRESOURCE-0006
|
sl@0
|
542 |
@SYMPREQ PREQ2095
|
sl@0
|
543 |
@SYMTestPriority High
|
sl@0
|
544 |
@SYMTestCaseDesc Draw RSgImage using RemotGc->DrawResource(const TRect&, const RWsDrawableSource&, TGraphicsRotation)
|
sl@0
|
545 |
@SYMTestActions Record the draw resource commands using CRemoteGc and play the recorded commands on a window using
|
sl@0
|
546 |
Play(const TPoint&, const TRect&, RWsSession&, CWindowGc&) and then play the recorded commands using .
|
sl@0
|
547 |
Play(const TPoint&, const TRect&, const MWsGraphicResolver&, MWsGraphicsContext&).
|
sl@0
|
548 |
@SYMTestExpectedResults Drawn images should match reference CFbsBitmap and also values received by MWsGraphicsContext should
|
sl@0
|
549 |
match what was originally sent to DrawResource.
|
sl@0
|
550 |
*/
|
sl@0
|
551 |
void CTDrawResource::TestRemoteGcDrawResourceRectL()
|
sl@0
|
552 |
{
|
sl@0
|
553 |
const TRect KRemotGcSourceRect(0, 0, iWindow.Size().iWidth, iWindow.Size().iHeight);
|
sl@0
|
554 |
const TRegionFix<1> KClippingRegion(KRemotGcSourceRect);
|
sl@0
|
555 |
|
sl@0
|
556 |
//Create remote gc - required RemoteGc testing
|
sl@0
|
557 |
CRemoteGc* remoteGc = CRemoteGc::NewL(TheClient->iScreen);
|
sl@0
|
558 |
CleanupStack::PushL(remoteGc);
|
sl@0
|
559 |
|
sl@0
|
560 |
//Record draw messages
|
sl@0
|
561 |
remoteGc->BeginDraw(KRemotGcSourceRect);
|
sl@0
|
562 |
MWsDrawResource* dr = static_cast<MWsDrawResource*>(remoteGc->Interface(KMWsDrawResourceInterfaceUid));
|
sl@0
|
563 |
TEST(dr != NULL);
|
sl@0
|
564 |
dr->DrawResource(KDestRect, iWsDrawableSource, KTestRotation);
|
sl@0
|
565 |
remoteGc->EndDraw();
|
sl@0
|
566 |
|
sl@0
|
567 |
RWsGraphicMsgBuf msgBuf;
|
sl@0
|
568 |
CleanupClosePushL(msgBuf);
|
sl@0
|
569 |
//Externalize the captured commands from remote gc in to a buffer
|
sl@0
|
570 |
remoteGc->ExternalizeL(msgBuf, ETrue);
|
sl@0
|
571 |
|
sl@0
|
572 |
//Create command buffer - required RemoteGc testing
|
sl@0
|
573 |
CCommandBuffer* cmdBuffer = CCommandBuffer::NewL();
|
sl@0
|
574 |
CleanupStack::PushL(cmdBuffer);
|
sl@0
|
575 |
//Internalize the buffer with captured commands (from CRemoteGC) in to CCommandBuffer
|
sl@0
|
576 |
cmdBuffer->InternalizeL(msgBuf.Pckg());
|
sl@0
|
577 |
|
sl@0
|
578 |
// Play stored commands using Play(const TRect&, const TRect&, RWsSession&, CWindowGc&)
|
sl@0
|
579 |
iWindow.Invalidate();
|
sl@0
|
580 |
iWindow.BeginRedraw();
|
sl@0
|
581 |
TheGc->Activate(iWindow);
|
sl@0
|
582 |
TheGc->Clear();
|
sl@0
|
583 |
cmdBuffer->Play(KPlayOffset, &KClippingRegion, KRemotGcSourceRect, TheClient->iWs, *TheGc);
|
sl@0
|
584 |
TheGc->Deactivate();
|
sl@0
|
585 |
iWindow.EndRedraw();
|
sl@0
|
586 |
TheClient->iWs.Finish();
|
sl@0
|
587 |
TheClient->WaitForRedrawsToFinish();
|
sl@0
|
588 |
|
sl@0
|
589 |
//Copy the screen to the copy bitmap
|
sl@0
|
590 |
TheClient->iScreen->CopyScreenToBitmap(iCopyBitmap, KCopyTestRect);
|
sl@0
|
591 |
|
sl@0
|
592 |
//Compare the bitmaps
|
sl@0
|
593 |
INFO_PRINTF1(_L("Using Play(const TPoint&, const TRect&, RWsSession&, CWindowGc&)"));
|
sl@0
|
594 |
TBool compRes = CompareBitmapsByPixel(iCopyBitmap, iScaledBitmap);
|
sl@0
|
595 |
TEST(compRes);
|
sl@0
|
596 |
|
sl@0
|
597 |
// Play stored commands using Play(const TPoint&, const TRect&, const MWsGraphicResolver&, MWsGraphicsContext&)
|
sl@0
|
598 |
iWindow.Invalidate();
|
sl@0
|
599 |
iWindow.BeginRedraw();
|
sl@0
|
600 |
TheGc->Activate(iWindow);
|
sl@0
|
601 |
TheGc->Clear();
|
sl@0
|
602 |
iGraphicsCon->Clear();
|
sl@0
|
603 |
cmdBuffer->Play(KPlayOffset,&KClippingRegion,KRemotGcSourceRect,*iWsGrapicResolver,*iGraphicsCon);
|
sl@0
|
604 |
TheGc->Deactivate();
|
sl@0
|
605 |
iWindow.EndRedraw();
|
sl@0
|
606 |
TheClient->iWs.Finish();
|
sl@0
|
607 |
TheClient->WaitForRedrawsToFinish();
|
sl@0
|
608 |
|
sl@0
|
609 |
//Compare the values received by CTestWsGraphicsContext and the values sent to it
|
sl@0
|
610 |
INFO_PRINTF1(_L("Using Play(const TPoint&, const TRect&, const MWsGraphicResolver&, MWsGraphicsContext&)"));
|
sl@0
|
611 |
TBool valuesSame = EFalse;
|
sl@0
|
612 |
|
sl@0
|
613 |
CFbsBitmap* bmp;
|
sl@0
|
614 |
BitmapLC(bmp);
|
sl@0
|
615 |
compRes = CompareBitmapsByPixel(bmp, iScaledBitmap);
|
sl@0
|
616 |
CleanupStack::PopAndDestroy(bmp);
|
sl@0
|
617 |
|
sl@0
|
618 |
if((iGraphicsCon->iDestRect == KDestRect) && (compRes)
|
sl@0
|
619 |
&& (reinterpret_cast<TInt&>(iGraphicsCon->iRotation)==reinterpret_cast<const TInt&>(KTestRotation)))
|
sl@0
|
620 |
valuesSame = ETrue;
|
sl@0
|
621 |
TEST(valuesSame);
|
sl@0
|
622 |
CleanupStack::PopAndDestroy(3, remoteGc);
|
sl@0
|
623 |
}
|
sl@0
|
624 |
|
sl@0
|
625 |
/**
|
sl@0
|
626 |
@SYMTestCaseID GRAPHICS-WSERV-DRAWRESOURCE-0007
|
sl@0
|
627 |
@SYMPREQ PREQ2095
|
sl@0
|
628 |
@SYMTestPriority High
|
sl@0
|
629 |
@SYMTestCaseDesc Draw RSgImage using RemotGc->DrawResource(const TRect&, const RWsDrawableSource&, const TRect&, TGraphicsRotation)
|
sl@0
|
630 |
@SYMTestActions Record the draw resource commands using CRemoteGc and play the recorded commands on a window using
|
sl@0
|
631 |
Play(const TPoint&, const TRect&, RWsSession&, CWindowGc&) and then play the recorded commands using .
|
sl@0
|
632 |
Play(const TPoint&, const TRect&, const MWsGraphicResolver&, MWsGraphicsContext&).
|
sl@0
|
633 |
@SYMTestExpectedResults Drawn images should match reference CFbsBitmap and also values received by MWsGraphicsContext should
|
sl@0
|
634 |
match what was originally sent to DrawResource.
|
sl@0
|
635 |
*/
|
sl@0
|
636 |
void CTDrawResource::TestRemoteGcDrawResourceScaleL()
|
sl@0
|
637 |
{
|
sl@0
|
638 |
const TRect KRemotGcSourceRect(0, 0, iWindow.Size().iWidth, iWindow.Size().iHeight);
|
sl@0
|
639 |
const TRegionFix<1> KClippingRegion(KRemotGcSourceRect);
|
sl@0
|
640 |
|
sl@0
|
641 |
//Create remote gc - required RemoteGc testing
|
sl@0
|
642 |
CRemoteGc* remoteGc = CRemoteGc::NewL(TheClient->iScreen);
|
sl@0
|
643 |
CleanupStack::PushL(remoteGc);
|
sl@0
|
644 |
|
sl@0
|
645 |
//Record draw messages
|
sl@0
|
646 |
remoteGc->BeginDraw(KRemotGcSourceRect);
|
sl@0
|
647 |
MWsDrawResource* dr = static_cast<MWsDrawResource*>(remoteGc->Interface(KMWsDrawResourceInterfaceUid));
|
sl@0
|
648 |
TEST(dr != NULL);
|
sl@0
|
649 |
dr->DrawResource(KDestRect, iWsDrawableSource, KSourceRect, KTestRotation);
|
sl@0
|
650 |
remoteGc->EndDraw();
|
sl@0
|
651 |
|
sl@0
|
652 |
RWsGraphicMsgBuf msgBuf;
|
sl@0
|
653 |
CleanupClosePushL(msgBuf);
|
sl@0
|
654 |
//Externalize the captured commands from remote gc in to a buffer
|
sl@0
|
655 |
remoteGc->ExternalizeL(msgBuf, ETrue);
|
sl@0
|
656 |
|
sl@0
|
657 |
//Create command buffer - required RemoteGc testing
|
sl@0
|
658 |
CCommandBuffer* cmdBuffer = CCommandBuffer::NewL();
|
sl@0
|
659 |
CleanupStack::PushL(cmdBuffer);
|
sl@0
|
660 |
//Internalize the buffer with captured commands (from CRemoteGC) in to CCommandBuffer
|
sl@0
|
661 |
cmdBuffer->InternalizeL(msgBuf.Pckg());
|
sl@0
|
662 |
|
sl@0
|
663 |
// Play the stored commands using Play(const TRect&, const TRect&, RWsSession&, CWindowGc&)
|
sl@0
|
664 |
remoteGc->ResetCommandBuffer();
|
sl@0
|
665 |
iWindow.Invalidate();
|
sl@0
|
666 |
iWindow.BeginRedraw();
|
sl@0
|
667 |
TheGc->Activate(iWindow);
|
sl@0
|
668 |
TheGc->Clear();
|
sl@0
|
669 |
cmdBuffer->Play(KPlayOffset, &KClippingRegion, KRemotGcSourceRect, TheClient->iWs, *TheGc);
|
sl@0
|
670 |
TheGc->Deactivate();
|
sl@0
|
671 |
iWindow.EndRedraw();
|
sl@0
|
672 |
TheClient->iWs.Finish();
|
sl@0
|
673 |
TheClient->WaitForRedrawsToFinish();
|
sl@0
|
674 |
//Copy the screen to the copy bitmap
|
sl@0
|
675 |
TheClient->iScreen->CopyScreenToBitmap(iCopyBitmap, KCopyTestRect);
|
sl@0
|
676 |
|
sl@0
|
677 |
//Compare the bitmaps
|
sl@0
|
678 |
INFO_PRINTF1(_L("Using Play(const TPoint&, const TRect&, RWsSession&, CWindowGc&)"));
|
sl@0
|
679 |
TBool compRes = CompareBitmapsByPixel(iCopyBitmap, iScaledCroppedBitmap);
|
sl@0
|
680 |
TEST(compRes);
|
sl@0
|
681 |
|
sl@0
|
682 |
// Play the stored commands using Play(const TPoint&, const TRect&, const MWsGraphicResolver&, MWsGraphicsContext&)
|
sl@0
|
683 |
iWindow.Invalidate();
|
sl@0
|
684 |
iWindow.BeginRedraw();
|
sl@0
|
685 |
TheGc->Activate(iWindow);
|
sl@0
|
686 |
TheGc->Clear();
|
sl@0
|
687 |
iGraphicsCon->Clear();
|
sl@0
|
688 |
cmdBuffer->Play(KPlayOffset,&KClippingRegion,KRemotGcSourceRect,*iWsGrapicResolver,*iGraphicsCon);
|
sl@0
|
689 |
TheGc->Deactivate();
|
sl@0
|
690 |
iWindow.EndRedraw();
|
sl@0
|
691 |
TheClient->iWs.Finish();
|
sl@0
|
692 |
TheClient->WaitForRedrawsToFinish();
|
sl@0
|
693 |
|
sl@0
|
694 |
//Compare the values received by CTestWsGraphicsContext and the values sent to it
|
sl@0
|
695 |
INFO_PRINTF1(_L("Using Play(const TPoint&, const TRect&, const MWsGraphicResolver&, MWsGraphicsContext&)"));
|
sl@0
|
696 |
TBool valuesSame = EFalse;
|
sl@0
|
697 |
|
sl@0
|
698 |
CFbsBitmap* bmp;
|
sl@0
|
699 |
BitmapLC(bmp);
|
sl@0
|
700 |
compRes = CompareBitmapsByPixel(bmp, iScaledCroppedBitmap);
|
sl@0
|
701 |
CleanupStack::PopAndDestroy(bmp);
|
sl@0
|
702 |
|
sl@0
|
703 |
if((iGraphicsCon->iDestRect == KDestRect) && (compRes) && (iGraphicsCon->iSrcRect == KSourceRect)
|
sl@0
|
704 |
&& (reinterpret_cast<TInt&>(iGraphicsCon->iRotation)==reinterpret_cast<const TInt&>(KTestRotation)))
|
sl@0
|
705 |
valuesSame = ETrue;
|
sl@0
|
706 |
TEST(valuesSame);
|
sl@0
|
707 |
CleanupStack::PopAndDestroy(3, remoteGc);
|
sl@0
|
708 |
}
|
sl@0
|
709 |
|
sl@0
|
710 |
/**
|
sl@0
|
711 |
@SYMTestCaseID GRAPHICS-WSERV-DRAWRESOURCE-0008
|
sl@0
|
712 |
@SYMPREQ PREQ2095
|
sl@0
|
713 |
@SYMTestPriority High
|
sl@0
|
714 |
@SYMTestCaseDesc Negative testing. Draw graphics recourses which associated with different screens.
|
sl@0
|
715 |
@SYMTestActions Open RWsDrawableSource associated with the screen which doesn’ exist.
|
sl@0
|
716 |
Open RWsDrawableSource associated with the screen which exists but differes from drawing target.
|
sl@0
|
717 |
Draw Rectangle and Resource to the screen via CWindowGc
|
sl@0
|
718 |
Draw Rectangle and Resource to the screen via CRemoteGc
|
sl@0
|
719 |
@SYMTestExpectedResults Opening drawable resource on the screen which doesn’t exist must fail with error code KErrArgument
|
sl@0
|
720 |
Drawing primitives will result only rectangles be drawn as drawable recourses get associated with different screen
|
sl@0
|
721 |
*/
|
sl@0
|
722 |
void CTDrawResource::TestDrawResourceScreensL()
|
sl@0
|
723 |
{
|
sl@0
|
724 |
TInt numOfScreens = TheClient->iWs.NumberOfScreens();
|
sl@0
|
725 |
if(numOfScreens < 2)
|
sl@0
|
726 |
{
|
sl@0
|
727 |
INFO_PRINTF2(_L("This test case will be running if the number of available screens more than 1, current number is %d"), numOfScreens);
|
sl@0
|
728 |
return;
|
sl@0
|
729 |
}
|
sl@0
|
730 |
TInt screenNumber = TheClient->iScreen->GetScreenNumber();
|
sl@0
|
731 |
TInt differentScreen = (screenNumber == 0) ? 1 : 0;
|
sl@0
|
732 |
|
sl@0
|
733 |
RSgImage sgImage;
|
sl@0
|
734 |
CreateSgImageFromBitmapL(sgImage);
|
sl@0
|
735 |
CleanupClosePushL(sgImage);
|
sl@0
|
736 |
|
sl@0
|
737 |
RWsDrawableSource drawableSource(TheClient->iWs);
|
sl@0
|
738 |
TInt res = drawableSource.Create(sgImage, differentScreen + 200); //wrong screen number
|
sl@0
|
739 |
TEST(res == KErrArgument);
|
sl@0
|
740 |
|
sl@0
|
741 |
res = drawableSource.Create(iImage, differentScreen);
|
sl@0
|
742 |
TEST(res == KErrNotSupported); //in order to succeed the image must be created with flag usage ESgUsageWindowGcSource
|
sl@0
|
743 |
|
sl@0
|
744 |
TSgImageInfo info;
|
sl@0
|
745 |
User::LeaveIfError(sgImage.GetInfo(info));
|
sl@0
|
746 |
|
sl@0
|
747 |
res = drawableSource.Create(sgImage, differentScreen);
|
sl@0
|
748 |
if(res == KErrNotSupported)
|
sl@0
|
749 |
{
|
sl@0
|
750 |
INFO_PRINTF1(_L("The second screen is not supports drawable source. This test case terminates now."));
|
sl@0
|
751 |
CleanupStack::PopAndDestroy(&sgImage);
|
sl@0
|
752 |
return;
|
sl@0
|
753 |
}
|
sl@0
|
754 |
TEST(res == KErrNone);
|
sl@0
|
755 |
User::LeaveIfError(res);
|
sl@0
|
756 |
CleanupClosePushL(drawableSource);
|
sl@0
|
757 |
|
sl@0
|
758 |
iWindow.BeginRedraw();
|
sl@0
|
759 |
TheGc->Activate(iWindow);
|
sl@0
|
760 |
TheGc->Clear();
|
sl@0
|
761 |
TheGc->SetBrushStyle(CFbsBitGc::ESolidBrush);
|
sl@0
|
762 |
TheGc->SetPenStyle(CFbsBitGc::ENullPen);
|
sl@0
|
763 |
TheGc->SetBrushColor(KRgbGreen);
|
sl@0
|
764 |
TheGc->DrawRect(TRect(KDestPoint, info.iSizeInPixels));
|
sl@0
|
765 |
// Draw to TPoint(0,0) with EGraphicsRotationNone but to the different screen
|
sl@0
|
766 |
MWsDrawResource* winDr = static_cast<MWsDrawResource*>(TheGc->Interface(KMWsDrawResourceInterfaceUid));
|
sl@0
|
767 |
TEST(winDr != NULL);
|
sl@0
|
768 |
winDr->DrawResource(KDestPoint, drawableSource, CWindowGc::EGraphicsRotationNone);
|
sl@0
|
769 |
TheGc->Deactivate();
|
sl@0
|
770 |
iWindow.EndRedraw();
|
sl@0
|
771 |
TheClient->iWs.Finish();
|
sl@0
|
772 |
TheClient->WaitForRedrawsToFinish();
|
sl@0
|
773 |
|
sl@0
|
774 |
//Copy the screen to the copy bitmap
|
sl@0
|
775 |
TheClient->iScreen->CopyScreenToBitmap(iCopyBitmap, KCopyTestRect);
|
sl@0
|
776 |
|
sl@0
|
777 |
//Compare the bitmaps
|
sl@0
|
778 |
INFO_PRINTF1(_L("Draw to TPoint(0,0) with EGraphicsRotationNone but to different screen"));
|
sl@0
|
779 |
TBool compRes = CompareBitmapsByPixel(iCopyBitmap, iBitmapWrongScreenNumber);
|
sl@0
|
780 |
TEST(compRes);
|
sl@0
|
781 |
|
sl@0
|
782 |
//--------------------------- remoteGc
|
sl@0
|
783 |
const TRect KRemotGcSourceRect(0, 0, iWindow.Size().iWidth, iWindow.Size().iHeight);
|
sl@0
|
784 |
const TRegionFix<1> KClippingRegion(KRemotGcSourceRect);
|
sl@0
|
785 |
|
sl@0
|
786 |
//Create remote gc - required RemoteGc testing
|
sl@0
|
787 |
CRemoteGc* remoteGc = CRemoteGc::NewL(TheClient->iScreen);
|
sl@0
|
788 |
CleanupStack::PushL(remoteGc);
|
sl@0
|
789 |
|
sl@0
|
790 |
//Record draw messages
|
sl@0
|
791 |
remoteGc->BeginDraw(KRemotGcSourceRect);
|
sl@0
|
792 |
remoteGc->SetBrushStyle(CFbsBitGc::ESolidBrush);
|
sl@0
|
793 |
remoteGc->SetPenStyle(CFbsBitGc::ENullPen);
|
sl@0
|
794 |
remoteGc->SetBrushColor(KRgbGreen);
|
sl@0
|
795 |
remoteGc->DrawRect(TRect(KDestPoint, info.iSizeInPixels));
|
sl@0
|
796 |
MWsDrawResource* remDr = static_cast<MWsDrawResource*>(remoteGc->Interface(KMWsDrawResourceInterfaceUid));
|
sl@0
|
797 |
TEST(remDr != NULL);
|
sl@0
|
798 |
remDr->DrawResource(KDestRect, drawableSource, CWindowGc::EGraphicsRotationNone);
|
sl@0
|
799 |
remoteGc->EndDraw();
|
sl@0
|
800 |
|
sl@0
|
801 |
RWsGraphicMsgBuf msgBuf;
|
sl@0
|
802 |
CleanupClosePushL(msgBuf);
|
sl@0
|
803 |
//Externalize the captured commands from remote gc in to a buffer
|
sl@0
|
804 |
remoteGc->ExternalizeL(msgBuf, ETrue);
|
sl@0
|
805 |
|
sl@0
|
806 |
//Create command buffer - required RemoteGc testing
|
sl@0
|
807 |
CCommandBuffer* cmdBuffer = CCommandBuffer::NewL();
|
sl@0
|
808 |
CleanupStack::PushL(cmdBuffer);
|
sl@0
|
809 |
//Internalize the buffer with captured commands (from CRemoteGC) in to CCommandBuffer
|
sl@0
|
810 |
cmdBuffer->InternalizeL(msgBuf.Pckg());
|
sl@0
|
811 |
|
sl@0
|
812 |
// Play stored commands using Play(const TRect&, const TRect&, RWsSession&, CWindowGc&)
|
sl@0
|
813 |
iWindow.Invalidate();
|
sl@0
|
814 |
iWindow.BeginRedraw();
|
sl@0
|
815 |
TheGc->Activate(iWindow);
|
sl@0
|
816 |
TheGc->Clear();
|
sl@0
|
817 |
cmdBuffer->Play(KPlayOffset, &KClippingRegion, KRemotGcSourceRect, TheClient->iWs, *TheGc);
|
sl@0
|
818 |
TheGc->Deactivate();
|
sl@0
|
819 |
iWindow.EndRedraw();
|
sl@0
|
820 |
TheClient->iWs.Finish();
|
sl@0
|
821 |
TheClient->WaitForRedrawsToFinish();
|
sl@0
|
822 |
|
sl@0
|
823 |
//Copy the screen to the copy bitmap
|
sl@0
|
824 |
TheClient->iScreen->CopyScreenToBitmap(iCopyBitmap, KCopyTestRect);
|
sl@0
|
825 |
|
sl@0
|
826 |
INFO_PRINTF1(_L("Draw to TPoint(0,0) with EGraphicsRotationNone but to different screen"));
|
sl@0
|
827 |
TBool compRes1 = CompareBitmapsByPixel(iCopyBitmap, iBitmapWrongScreenNumber);
|
sl@0
|
828 |
TEST(compRes1);
|
sl@0
|
829 |
|
sl@0
|
830 |
CleanupStack::PopAndDestroy(5, &sgImage);
|
sl@0
|
831 |
}
|
sl@0
|
832 |
|
sl@0
|
833 |
/**
|
sl@0
|
834 |
@SYMTestCaseID GRAPHICS-WSERV-TestCopyScreenToBitmapWithDifferentDisplayModes-0001
|
sl@0
|
835 |
@SYMPREQ PREQ2095
|
sl@0
|
836 |
@SYMTestPriority High
|
sl@0
|
837 |
@SYMTestCaseDesc Get bitmap and scanline from the screen.
|
sl@0
|
838 |
@SYMTestActions Draw bitmap in various display modes to the screen.
|
sl@0
|
839 |
Retrieve scan line and bitmap from the screen using standard WSERV API.
|
sl@0
|
840 |
|
sl@0
|
841 |
@SYMTestExpectedResults Checks that obtained bitmap matches with the reference bitmap.
|
sl@0
|
842 |
*/
|
sl@0
|
843 |
void CTDrawResource::TestCopyScreenToBitmapWithDifferentDisplayModesL()
|
sl@0
|
844 |
{
|
sl@0
|
845 |
TDisplayMode mode = TheClient->iScreen->DisplayMode();
|
sl@0
|
846 |
INFO_PRINTF2(_L("Screen display mode %d"), mode);
|
sl@0
|
847 |
CFbsBitmap* bitmap = NULL;
|
sl@0
|
848 |
|
sl@0
|
849 |
TSize bitmapSize(163, 120);
|
sl@0
|
850 |
CreateBitmapLC(bitmap, bitmapSize, mode);
|
sl@0
|
851 |
|
sl@0
|
852 |
iWindow.BeginRedraw();
|
sl@0
|
853 |
TheGc->Activate(iWindow);
|
sl@0
|
854 |
TheGc->SetBrushStyle(CWindowGc::ESolidBrush);
|
sl@0
|
855 |
TheGc->SetBrushColor(KRgbYellow);
|
sl@0
|
856 |
TheGc->Clear();
|
sl@0
|
857 |
const TPoint ptOffset(10, 15);
|
sl@0
|
858 |
TheGc->BitBlt(KDestPoint + ptOffset, bitmap);
|
sl@0
|
859 |
|
sl@0
|
860 |
TheGc->Deactivate();
|
sl@0
|
861 |
iWindow.EndRedraw();
|
sl@0
|
862 |
TheClient->iWs.Finish();
|
sl@0
|
863 |
TheClient->WaitForRedrawsToFinish();
|
sl@0
|
864 |
|
sl@0
|
865 |
const TInt length = bitmapSize.iWidth;
|
sl@0
|
866 |
const TInt height = bitmapSize.iHeight;
|
sl@0
|
867 |
const TInt buffersSize = length * 4;
|
sl@0
|
868 |
TUint8 *screenData = (TUint8*) User::AllocL(buffersSize);
|
sl@0
|
869 |
CleanupStack::PushL(screenData);
|
sl@0
|
870 |
TUint8 *bitmapData = (TUint8*) User::AllocL(buffersSize);
|
sl@0
|
871 |
CleanupStack::PushL(bitmapData);
|
sl@0
|
872 |
TPtr8 ptrScreen (screenData, buffersSize, buffersSize);
|
sl@0
|
873 |
TPtr8 ptrBitmap (bitmapData, buffersSize, buffersSize);
|
sl@0
|
874 |
|
sl@0
|
875 |
//EGray mode uses dithering in BitGdi, wserv doesnt support this, thus skipping the first mode
|
sl@0
|
876 |
for(TInt ii =2; ; ii++)
|
sl@0
|
877 |
{
|
sl@0
|
878 |
TDisplayMode dispMode = (TDisplayMode)ii;
|
sl@0
|
879 |
if(dispMode >= EColorLast)
|
sl@0
|
880 |
break;
|
sl@0
|
881 |
if(dispMode == ERgb)
|
sl@0
|
882 |
continue;
|
sl@0
|
883 |
|
sl@0
|
884 |
INFO_PRINTF2(_L("Copy Screen to bitmap, destination mode %d"), dispMode);
|
sl@0
|
885 |
|
sl@0
|
886 |
CFbsBitmap *bmp = new (ELeave) CFbsBitmap;
|
sl@0
|
887 |
CleanupStack::PushL(bmp);
|
sl@0
|
888 |
User::LeaveIfError(bmp->Create(bitmapSize, dispMode));
|
sl@0
|
889 |
TUidPixelFormat pixelFormat = SgUtils::DisplayModeToPixelFormat(dispMode);
|
sl@0
|
890 |
const TInt minStride = SgUtils::MinDataStride(length, pixelFormat);
|
sl@0
|
891 |
const TInt bitmapStride = bmp->DataStride();
|
sl@0
|
892 |
TEST(minStride <= bitmapStride);
|
sl@0
|
893 |
|
sl@0
|
894 |
//Copy the screen to the copy bitmap
|
sl@0
|
895 |
TRect rc = bitmapSize;
|
sl@0
|
896 |
rc.Move(ptOffset);
|
sl@0
|
897 |
TheClient->iScreen->CopyScreenToBitmap(bmp, rc);
|
sl@0
|
898 |
CFbsBitmap *bmpRef = NULL;
|
sl@0
|
899 |
CreateReferenceBitmapLC(bmpRef, bitmap, dispMode);
|
sl@0
|
900 |
TEST(bmpRef->DisplayMode() == dispMode);
|
sl@0
|
901 |
|
sl@0
|
902 |
//Compare the bitmaps
|
sl@0
|
903 |
TBool compRes = CompareBitmapsByPixel(bmp, bmpRef);
|
sl@0
|
904 |
TEST(compRes);
|
sl@0
|
905 |
|
sl@0
|
906 |
for(TInt jj = 0; jj < height; jj++)
|
sl@0
|
907 |
{
|
sl@0
|
908 |
TPoint pt(0, jj);
|
sl@0
|
909 |
TPoint ptScreen = pt + ptOffset;
|
sl@0
|
910 |
|
sl@0
|
911 |
Mem::Fill(screenData, bitmapStride, 0xff);
|
sl@0
|
912 |
Mem::Fill(bitmapData, bitmapStride, 0xff);
|
sl@0
|
913 |
|
sl@0
|
914 |
TheClient->iScreen->GetScanLine(ptrScreen, ptScreen, length, dispMode);
|
sl@0
|
915 |
bitmap->GetScanLine(ptrBitmap, pt, length, dispMode);
|
sl@0
|
916 |
TInt length1 = ptrScreen.Length();
|
sl@0
|
917 |
|
sl@0
|
918 |
TInt res = Mem::Compare(screenData, length1, bitmapData, length1);
|
sl@0
|
919 |
TEST(res == 0);
|
sl@0
|
920 |
}
|
sl@0
|
921 |
CleanupStack::PopAndDestroy(2, bmp);
|
sl@0
|
922 |
}//screen modes;
|
sl@0
|
923 |
|
sl@0
|
924 |
CleanupStack::PopAndDestroy(3, bitmap);
|
sl@0
|
925 |
}
|
sl@0
|
926 |
|
sl@0
|
927 |
//Helper function: Creates reference bitmap with specified display mode
|
sl@0
|
928 |
void CTDrawResource::CreateReferenceBitmapLC(CFbsBitmap*& aBmpTarget, CFbsBitmap* aBmpSrc, TDisplayMode aDestMode)
|
sl@0
|
929 |
{
|
sl@0
|
930 |
TSize size = aBmpSrc->SizeInPixels();
|
sl@0
|
931 |
aBmpTarget = new (ELeave) CFbsBitmap;
|
sl@0
|
932 |
CleanupStack::PushL(aBmpTarget);
|
sl@0
|
933 |
User::LeaveIfError(aBmpTarget->Create(size, aDestMode));
|
sl@0
|
934 |
CFbsBitmapDevice *refBitmapDev = CFbsBitmapDevice::NewL(aBmpTarget);
|
sl@0
|
935 |
CleanupStack::PushL(refBitmapDev);
|
sl@0
|
936 |
CFbsBitGc *originalBitGc;
|
sl@0
|
937 |
User::LeaveIfError(refBitmapDev->CreateContext(originalBitGc));
|
sl@0
|
938 |
CleanupStack::PushL(originalBitGc);
|
sl@0
|
939 |
originalBitGc->BitBlt(TPoint(0,0), aBmpSrc);
|
sl@0
|
940 |
CleanupStack::PopAndDestroy(2, refBitmapDev);
|
sl@0
|
941 |
}
|
sl@0
|
942 |
|
sl@0
|
943 |
//Helper function: Creates reference bitmap with specified display mode
|
sl@0
|
944 |
void CTDrawResource::CreateBitmapLC(CFbsBitmap*& aBmpTarget, const TSize& aSize, TDisplayMode aDispMode) const
|
sl@0
|
945 |
{
|
sl@0
|
946 |
aBmpTarget = new (ELeave) CFbsBitmap;
|
sl@0
|
947 |
CleanupStack::PushL(aBmpTarget);
|
sl@0
|
948 |
User::LeaveIfError(aBmpTarget->Create(aSize, aDispMode));
|
sl@0
|
949 |
CFbsBitmapDevice *refBitmapDev = CFbsBitmapDevice::NewL(aBmpTarget);
|
sl@0
|
950 |
CleanupStack::PushL(refBitmapDev);
|
sl@0
|
951 |
CFbsBitGc *originalBitGc;
|
sl@0
|
952 |
User::LeaveIfError(refBitmapDev->CreateContext(originalBitGc));
|
sl@0
|
953 |
CleanupStack::PushL(originalBitGc);
|
sl@0
|
954 |
|
sl@0
|
955 |
TRect rect = TRect(aSize);
|
sl@0
|
956 |
rect.Shrink(21, 15);
|
sl@0
|
957 |
|
sl@0
|
958 |
originalBitGc->SetBrushStyle(CFbsBitGc::ESolidBrush);
|
sl@0
|
959 |
originalBitGc->SetBrushColor(TRgb(0,150,150));
|
sl@0
|
960 |
originalBitGc->DrawRect(TRect(TPoint(0,0), TSize(aSize.iWidth, aSize.iHeight / 2)));
|
sl@0
|
961 |
originalBitGc->SetBrushColor(TRgb(150,100,150));
|
sl@0
|
962 |
originalBitGc->DrawRect(TRect(TPoint(0,aSize.iHeight / 2), TSize(aSize.iWidth, aSize.iHeight)));
|
sl@0
|
963 |
|
sl@0
|
964 |
originalBitGc->SetBrushColor(TRgb(0,0,128));
|
sl@0
|
965 |
originalBitGc->DrawRect(rect);
|
sl@0
|
966 |
|
sl@0
|
967 |
|
sl@0
|
968 |
CleanupStack::PopAndDestroy(2, refBitmapDev);
|
sl@0
|
969 |
}
|
sl@0
|
970 |
|
sl@0
|
971 |
//Helper function: Creates a RSgImage from a bitmap
|
sl@0
|
972 |
void CTDrawResource::CreateSgImageFromBitmapL(RSgImage& aSgImage)
|
sl@0
|
973 |
{
|
sl@0
|
974 |
TUint32* data = iRefBitmap->DataAddress();
|
sl@0
|
975 |
TInt stride = iRefBitmap->DataStride();
|
sl@0
|
976 |
TSize size = iRefBitmap->SizeInPixels();
|
sl@0
|
977 |
|
sl@0
|
978 |
TSgImageInfo info;
|
sl@0
|
979 |
info.iSizeInPixels = size;
|
sl@0
|
980 |
info.iScreenId = TheClient->iScreen->CurrentScreenMode();
|
sl@0
|
981 |
info.iShareable = ETrue; //must be shareable since wserv is in other process
|
sl@0
|
982 |
info.iUsage = ESgUsageWindowGcSource;
|
sl@0
|
983 |
info.iPixelFormat = SgUtils::DisplayModeToPixelFormat(iRefBitmap->DisplayMode());
|
sl@0
|
984 |
|
sl@0
|
985 |
User::LeaveIfError(aSgImage.Create(info, data, stride));
|
sl@0
|
986 |
}
|
sl@0
|
987 |
|
sl@0
|
988 |
//Helper function: Creates all reference bitmaps required for all tests
|
sl@0
|
989 |
void CTDrawResource::CreateReferenceAndCopyBitmapsL()
|
sl@0
|
990 |
{
|
sl@0
|
991 |
//Create reference bitmap
|
sl@0
|
992 |
iRefBitmap = new (ELeave) CFbsBitmap();
|
sl@0
|
993 |
User::LeaveIfError(iRefBitmap->Create(TSize(160,120),EColor64K));
|
sl@0
|
994 |
|
sl@0
|
995 |
//Setup to draw to original reference bitmap
|
sl@0
|
996 |
CFbsBitmapDevice *refBitmapDev = CFbsBitmapDevice::NewL(iRefBitmap);
|
sl@0
|
997 |
CleanupStack::PushL(refBitmapDev);
|
sl@0
|
998 |
CFbsBitGc *originalBitGc;
|
sl@0
|
999 |
User::LeaveIfError(refBitmapDev->CreateContext(originalBitGc));
|
sl@0
|
1000 |
CleanupStack::PushL(originalBitGc);
|
sl@0
|
1001 |
|
sl@0
|
1002 |
//Draw to reference bitmap
|
sl@0
|
1003 |
originalBitGc->SetBrushStyle(CFbsBitGc::ESolidBrush);
|
sl@0
|
1004 |
originalBitGc->SetBrushColor(TRgb(0,150,150));
|
sl@0
|
1005 |
originalBitGc->DrawRect(TRect(TPoint(0,0), TSize(160,60)));
|
sl@0
|
1006 |
originalBitGc->SetBrushColor(TRgb(150,100,150));
|
sl@0
|
1007 |
originalBitGc->DrawRect(TRect(TPoint(0,60), TSize(160,60)));
|
sl@0
|
1008 |
|
sl@0
|
1009 |
//create a rotated version of the reference bitmap
|
sl@0
|
1010 |
iRotatedRefBitmap = new (ELeave) CFbsBitmap();
|
sl@0
|
1011 |
User::LeaveIfError(iRotatedRefBitmap->Create(TSize(120,160),EColor64K));
|
sl@0
|
1012 |
|
sl@0
|
1013 |
//Setup to draw to rotated reference bitmap
|
sl@0
|
1014 |
CFbsBitmapDevice *rotRefBitmapDev = CFbsBitmapDevice::NewL(iRotatedRefBitmap);
|
sl@0
|
1015 |
CleanupStack::PushL(rotRefBitmapDev);
|
sl@0
|
1016 |
CFbsBitGc *rotatedBitGc;
|
sl@0
|
1017 |
User::LeaveIfError(rotRefBitmapDev->CreateContext(rotatedBitGc));
|
sl@0
|
1018 |
CleanupStack::PushL(rotatedBitGc);
|
sl@0
|
1019 |
|
sl@0
|
1020 |
//Draw to rotated reference bitmap
|
sl@0
|
1021 |
rotatedBitGc->SetBrushStyle(CFbsBitGc::ESolidBrush);
|
sl@0
|
1022 |
rotatedBitGc->SetBrushColor(TRgb(0,150,150));
|
sl@0
|
1023 |
rotatedBitGc->DrawRect(TRect(TPoint(60,0), TSize(60,160)));
|
sl@0
|
1024 |
rotatedBitGc->SetBrushColor(TRgb(150,100,150));
|
sl@0
|
1025 |
rotatedBitGc->DrawRect(TRect(TPoint(0,0), TSize(60,160)));
|
sl@0
|
1026 |
|
sl@0
|
1027 |
//Prepare a scaled version of the rotated reference bitmap to later compare against
|
sl@0
|
1028 |
iScaledBitmap = new (ELeave) CFbsBitmap();
|
sl@0
|
1029 |
User::LeaveIfError(iScaledBitmap->Create(TSize(160,120),EColor64K));
|
sl@0
|
1030 |
//Setup to draw to bitmap
|
sl@0
|
1031 |
CFbsBitmapDevice *scaledBitDev = CFbsBitmapDevice::NewL(iScaledBitmap);
|
sl@0
|
1032 |
CleanupStack::PushL(scaledBitDev);
|
sl@0
|
1033 |
CFbsBitGc *scaledBitGc;
|
sl@0
|
1034 |
User::LeaveIfError(scaledBitDev->CreateContext(scaledBitGc));
|
sl@0
|
1035 |
CleanupStack::PushL(scaledBitGc);
|
sl@0
|
1036 |
//Draw the rotated reference bitmap scaled
|
sl@0
|
1037 |
scaledBitGc->DrawBitmap(KDestRect, iRotatedRefBitmap);
|
sl@0
|
1038 |
|
sl@0
|
1039 |
//Prepare a scaled version of the rotated reference bitmap to later compare against
|
sl@0
|
1040 |
iScaledCroppedBitmap = new (ELeave) CFbsBitmap();
|
sl@0
|
1041 |
User::LeaveIfError(iScaledCroppedBitmap->Create(TSize(160,120),EColor64K));
|
sl@0
|
1042 |
|
sl@0
|
1043 |
//Setup to draw to bitmap
|
sl@0
|
1044 |
CFbsBitmapDevice *scaledCroppedBitDev = CFbsBitmapDevice::NewL(iScaledCroppedBitmap);
|
sl@0
|
1045 |
CleanupStack::PushL(scaledCroppedBitDev);
|
sl@0
|
1046 |
CFbsBitGc *scaledCroppedBitGc;
|
sl@0
|
1047 |
User::LeaveIfError(scaledCroppedBitDev->CreateContext(scaledCroppedBitGc));
|
sl@0
|
1048 |
CleanupStack::PushL(scaledCroppedBitGc);
|
sl@0
|
1049 |
|
sl@0
|
1050 |
//Draw the rotated reference bitmap scaled
|
sl@0
|
1051 |
TInt width = iRotatedRefBitmap->SizeInPixels().iWidth;
|
sl@0
|
1052 |
TInt height = iRotatedRefBitmap->SizeInPixels().iHeight;
|
sl@0
|
1053 |
|
sl@0
|
1054 |
TRect rectSrc;
|
sl@0
|
1055 |
rectSrc.iTl.iX= width - KSourceRect.Height();
|
sl@0
|
1056 |
rectSrc.iTl.iY= 0;
|
sl@0
|
1057 |
rectSrc.iBr.iX= width;
|
sl@0
|
1058 |
rectSrc.iBr.iY= KSourceRect.Width();
|
sl@0
|
1059 |
|
sl@0
|
1060 |
scaledCroppedBitGc->DrawBitmap(KDestRect, iRotatedRefBitmap, rectSrc);
|
sl@0
|
1061 |
|
sl@0
|
1062 |
//Prepare bitmap for testing drawable which opened with different screen number
|
sl@0
|
1063 |
iBitmapWrongScreenNumber = new (ELeave) CFbsBitmap();
|
sl@0
|
1064 |
User::LeaveIfError(iBitmapWrongScreenNumber->Create(TSize(160,120),EColor64K));
|
sl@0
|
1065 |
//Setup to draw to bitmap
|
sl@0
|
1066 |
CFbsBitmapDevice *wrongScreenNumberBitDev = CFbsBitmapDevice::NewL(iBitmapWrongScreenNumber);
|
sl@0
|
1067 |
CleanupStack::PushL(wrongScreenNumberBitDev);
|
sl@0
|
1068 |
CFbsBitGc *wrongScreenNumberBitGc;
|
sl@0
|
1069 |
User::LeaveIfError(wrongScreenNumberBitDev->CreateContext(wrongScreenNumberBitGc));
|
sl@0
|
1070 |
CleanupStack::PushL(wrongScreenNumberBitGc);
|
sl@0
|
1071 |
//Draw the rotated reference bitmap scaled
|
sl@0
|
1072 |
wrongScreenNumberBitGc->SetBrushColor(KRgbGreen);
|
sl@0
|
1073 |
wrongScreenNumberBitGc->SetBrushStyle(CFbsBitGc::ESolidBrush);
|
sl@0
|
1074 |
wrongScreenNumberBitGc->SetPenStyle(CFbsBitGc::ENullPen);
|
sl@0
|
1075 |
wrongScreenNumberBitGc->DrawRect(TRect(0, 0, 160, 120)); //
|
sl@0
|
1076 |
|
sl@0
|
1077 |
//Create a bitmap to copy to with the same display mode as the reference bitmap
|
sl@0
|
1078 |
iCopyBitmap = new (ELeave) CFbsBitmap();
|
sl@0
|
1079 |
User::LeaveIfError(iCopyBitmap->Create(TSize(640,240),EColor64K));
|
sl@0
|
1080 |
|
sl@0
|
1081 |
CleanupStack::PopAndDestroy(10, refBitmapDev);
|
sl@0
|
1082 |
}
|
sl@0
|
1083 |
|
sl@0
|
1084 |
//Helper function: This function compares two bitmaps on a pixel by pixel basis */
|
sl@0
|
1085 |
TBool CTDrawResource::CompareBitmapsByPixel(CFbsBitmap* aCandidateBitmap, CFbsBitmap* aReferenceBitmap)
|
sl@0
|
1086 |
{
|
sl@0
|
1087 |
TBool result = ETrue;
|
sl@0
|
1088 |
|
sl@0
|
1089 |
TSize candidateSize = aCandidateBitmap->SizeInPixels();
|
sl@0
|
1090 |
TSize referenceSize = aReferenceBitmap->SizeInPixels();
|
sl@0
|
1091 |
|
sl@0
|
1092 |
TInt mismatchedPixels = 0;
|
sl@0
|
1093 |
|
sl@0
|
1094 |
TRgb nativePixel;
|
sl@0
|
1095 |
TRgb referencePixel;
|
sl@0
|
1096 |
for (TInt x = 0; x < referenceSize.iWidth; x++)
|
sl@0
|
1097 |
{
|
sl@0
|
1098 |
for (TInt y = 0; y < referenceSize.iHeight; y++)
|
sl@0
|
1099 |
{
|
sl@0
|
1100 |
TPoint point(x,y);
|
sl@0
|
1101 |
nativePixel = TRgb(0,0,0,0);
|
sl@0
|
1102 |
referencePixel = TRgb(0,0,0,0);
|
sl@0
|
1103 |
aCandidateBitmap->GetPixel(nativePixel, point);
|
sl@0
|
1104 |
aReferenceBitmap->GetPixel(referencePixel, point);
|
sl@0
|
1105 |
|
sl@0
|
1106 |
if (nativePixel != referencePixel)
|
sl@0
|
1107 |
{
|
sl@0
|
1108 |
mismatchedPixels++;
|
sl@0
|
1109 |
result = EFalse;
|
sl@0
|
1110 |
}
|
sl@0
|
1111 |
}
|
sl@0
|
1112 |
}
|
sl@0
|
1113 |
|
sl@0
|
1114 |
INFO_PRINTF2(_L("Number of different pixels: %i"), mismatchedPixels);
|
sl@0
|
1115 |
return result;
|
sl@0
|
1116 |
}
|
sl@0
|
1117 |
//Helper function: This function extracts content of the image associated with the image target and copies it into bitmap
|
sl@0
|
1118 |
void CTDrawResource::BitmapLC(CFbsBitmap*& aBmp)
|
sl@0
|
1119 |
{
|
sl@0
|
1120 |
aBmp = new(ELeave) CFbsBitmap;
|
sl@0
|
1121 |
CleanupStack::PushL(aBmp);
|
sl@0
|
1122 |
|
sl@0
|
1123 |
TSgImageInfo info;
|
sl@0
|
1124 |
TInt res = iImage.GetInfo(info);
|
sl@0
|
1125 |
User::LeaveIfError(res);
|
sl@0
|
1126 |
|
sl@0
|
1127 |
res = aBmp ->Create(info.iSizeInPixels, SgUtils::PixelFormatToDisplayMode(info.iPixelFormat));
|
sl@0
|
1128 |
User::LeaveIfError(res);
|
sl@0
|
1129 |
TUint32* dataAddressDest = aBmp->DataAddress();
|
sl@0
|
1130 |
|
sl@0
|
1131 |
RSgImage image;
|
sl@0
|
1132 |
info.iUsage = ESgUsageNone;
|
sl@0
|
1133 |
info.iCpuAccess = ESgCpuAccessReadOnly;
|
sl@0
|
1134 |
res = image.Create(info, iImage);
|
sl@0
|
1135 |
User::LeaveIfError(res);
|
sl@0
|
1136 |
CleanupClosePushL(image);
|
sl@0
|
1137 |
const TAny* dataAddress = NULL;
|
sl@0
|
1138 |
TInt dataStride;
|
sl@0
|
1139 |
res = image.MapReadOnly(dataAddress, dataStride);
|
sl@0
|
1140 |
User::LeaveIfError(res);
|
sl@0
|
1141 |
Mem::Copy(dataAddressDest, dataAddress, dataStride * info.iSizeInPixels.iHeight);
|
sl@0
|
1142 |
image.Unmap();
|
sl@0
|
1143 |
CleanupStack::PopAndDestroy(&image);
|
sl@0
|
1144 |
}
|