X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=automated-tests%2Fsrc%2Fdali%2Fdali-test-suite-utils%2Ftest-application.cpp;h=14258c935cdc5d0a2b324c4a10790fe3f1cbf633;hb=0adda602532f61db5b44eb2796f9a74d7a37b519;hp=338b71fd625cab2db1190891c21e193154449b46;hpb=f75599be6209fd10c6d6584f0b20fc0f8b159264;p=platform%2Fcore%2Fuifw%2Fdali-core.git diff --git a/automated-tests/src/dali/dali-test-suite-utils/test-application.cpp b/automated-tests/src/dali/dali-test-suite-utils/test-application.cpp old mode 100644 new mode 100755 index 338b71f..14258c9 --- a/automated-tests/src/dali/dali-test-suite-utils/test-application.cpp +++ b/automated-tests/src/dali/dali-test-suite-utils/test-application.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 Samsung Electronics Co., Ltd. + * Copyright (c) 2020 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -26,7 +26,6 @@ TestApplication::TestApplication( uint32_t surfaceWidth, uint32_t surfaceHeight, uint32_t horizontalDpi, uint32_t verticalDpi, - ResourcePolicy::DataRetention policy, bool initialize ) : mRenderSurface( NULL ), mCore( NULL ), @@ -34,8 +33,7 @@ TestApplication::TestApplication( uint32_t surfaceWidth, mSurfaceHeight( surfaceHeight ), mFrame( 0u ), mDpi{ horizontalDpi, verticalDpi }, - mLastVSyncTime(0u), - mDataRetentionPolicy( policy ) + mLastVSyncTime(0u) { if( initialize ) { @@ -60,10 +58,10 @@ void TestApplication::CreateCore() mGlAbstraction, mGlSyncAbstraction, mGlContextHelperAbstraction, - mDataRetentionPolicy, Integration::RenderToFrameBuffer::FALSE, Integration::DepthBufferAvailable::TRUE, - Integration::StencilBufferAvailable::TRUE ); + Integration::StencilBufferAvailable::TRUE, + Integration::PartialUpdateAvailable::FALSE ); mCore->ContextCreated(); @@ -193,7 +191,7 @@ void TestApplication::DoUpdate( uint32_t intervalMilliseconds, const char* locat bool TestApplication::Render( uint32_t intervalMilliseconds, const char* location ) { DoUpdate( intervalMilliseconds, location ); - mCore->Render( mRenderStatus, false ); + mCore->Render( mRenderStatus, false /*do not force clear*/, false /*do not skip rendering*/ ); mFrame++; @@ -219,7 +217,7 @@ bool TestApplication::GetRenderNeedsUpdate() bool TestApplication::RenderOnly( ) { // Update Time values - mCore->Render( mRenderStatus, false ); + mCore->Render( mRenderStatus, false /*do not force clear*/, false /*do not skip rendering*/ ); mFrame++;