sl@0: // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #ifndef CONSTANTS_H_ sl@0: #define CONSTANTS_H_ sl@0: sl@0: // The frame rate delay used in CRateLimiterRenderStage sl@0: const TInt KFrameRateDelay = 500000; // 0.5 seconds sl@0: sl@0: //No of test frames used in CWsRateLimitGraphicDrawer sl@0: const TInt KMaxFrames = 40; sl@0: sl@0: // Approximate length of the animation sl@0: const TInt KAnimLength = 20000000; // 20 seconds sl@0: sl@0: // 1 Second in microseconds sl@0: const TInt KOneSecondInMicroSecs = 1000000; sl@0: sl@0: // Expected framerate without any additional rate limiting sl@0: const TReal KStdMinimumFrameRate = 4; sl@0: sl@0: // Allowed error when testing framerate without any additinal rate limiting sl@0: const TReal KStdErrorThreshHold = 0.2; sl@0: sl@0: sl@0: #endif /*CONSTANTS_H_*/