--- a/graphicstest/uibench/src/tgcesuiteserver.cpp Thu Aug 19 11:11:18 2010 +0300
+++ b/graphicstest/uibench/src/tgcesuiteserver.cpp Tue Aug 31 16:31:06 2010 +0300
@@ -1,4 +1,4 @@
-// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
+// Copyright (c) 2008-2010 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"
@@ -26,6 +26,7 @@
#include "tdirectgdiperf.h"
#include "teventhandlingperf.h"
#include "tflipframerate.h"
+#include "trenderorientation.h"
/**
Same code for Secure and non-secure variants
@@ -102,6 +103,7 @@
CTestStep* CGceSuiteServer::CreateTestStep(const TDesC& aStepName)
{
CTestStep* testStep = NULL;
+
if(aStepName == KTGraphicsResource)
testStep = new CTGraphicsResource();
else if(aStepName == KTBitBltPerfDirectGdi)
@@ -113,6 +115,9 @@
else if(aStepName == KEventHandlingPerfName)
testStep = new CTEventHandlingPerf();
else if(aStepName == KTFlipFramerate)
- testStep = new CTFlipFramerate;
+ testStep = new CTFlipFramerate();
+ else if(aStepName == KTRenderOrientation)
+ testStep = new CTRenderOrientation;
+
return testStep;
}