First public contribution.
1 // Copyright (c) 1995-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 "wsgraphicdrawercontext.h"
17 #include "stdgraphictestdrawer.h"
19 CWsGraphicDrawerTestFrameRate* CWsGraphicDrawerTestFrameRate::CreateL()
21 return new(ELeave) CWsGraphicDrawerTestFrameRate;
24 CWsGraphicDrawerTestFrameRate::CWsGraphicDrawerTestFrameRate()
28 CWsGraphicDrawerTestFrameRate::~CWsGraphicDrawerTestFrameRate()
37 void CWsGraphicDrawerTestFrameRate::ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,MWsClient& aOwner,const TDesC8& /*aData*/)
39 BaseConstructL(aEnv,aId,aOwner);
40 if (!(aEnv.Screen(0)->ResolveObjectInterface(KMWsCompositionContext) || aEnv.Screen(0)->ResolveObjectInterface(KMWsScene)))
42 iContext = CWsGraphicDrawerNonNgaContext::NewL();
46 iContext = CWsGraphicDrawerNgaContext::NewL();
50 void CWsGraphicDrawerTestFrameRate::DoDraw(MWsGc& aGc,const TRect& aRect,const TDesC8& /*aData*/) const
52 if (KErrNone != iContext->Push(aGc))
56 //Simplification: treats all screens the same
57 iContext->DrawFrameRate(aGc, aRect, iFps);
61 iContext->ScheduleAnimation(aGc,aRect,0); // as fast as possible
65 void CWsGraphicDrawerTestFrameRate::HandleMessage(const TDesC8& /*aData*/)
69 TInt CFrameRate::Fps() const
73 const TUint count = Min(iNumSamples,KMaxSamples);
74 TInt64 earliest = iSamples[0];
75 TInt64 latest = earliest;
76 for(TInt i=1; i<count; i++)
78 const TInt64 sample = iSamples[i];
79 earliest = Min(earliest,sample);
80 latest = Max(latest,sample);
82 const TInt64 duration = latest - earliest;
83 const TInt microspf = (duration / count);
86 const TInt millispf = (microspf / 1000);
89 const TInt fps = (1000 / millispf);
97 TInt CFrameRate::CountSamples() const
102 void CFrameRate::Sample() const
104 //Add the current tick to the stats for next time
107 iSamples[iNumSamples % KMaxSamples] = now.Int64();