X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=automated-tests%2Fsrc%2Fdali-adaptor%2Fdali-test-suite-utils%2Ftest-graphics-application.cpp;h=3e8e1713a552dcdce762afb44634a6c1a52e658c;hb=299781da2924963459b7f13cfb8b39f2374db55d;hp=96b999d3e45e52cda0537ba7a824cb3d5a026551;hpb=865c50999626f050c342c8b6ca5df004bfcc1023;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/automated-tests/src/dali-adaptor/dali-test-suite-utils/test-graphics-application.cpp b/automated-tests/src/dali-adaptor/dali-test-suite-utils/test-graphics-application.cpp index 96b999d..3e8e171 100644 --- a/automated-tests/src/dali-adaptor/dali-test-suite-utils/test-graphics-application.cpp +++ b/automated-tests/src/dali-adaptor/dali-test-suite-utils/test-graphics-application.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021 Samsung Electronics Co., Ltd. + * Copyright (c) 2023 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. @@ -16,6 +16,7 @@ */ #include "test-graphics-application.h" +#include namespace Dali { @@ -50,11 +51,18 @@ void TestGraphicsApplication::Initialize() void TestGraphicsApplication::CreateCore() { + Dali::Integration::Log::LogFunction logFunction(&TestGraphicsApplication::LogMessage); + Dali::Integration::Log::InstallLogFunction(logFunction); + + Dali::Integration::Trace::LogContextFunction logContextFunction(&TestGraphicsApplication::LogContext); + Dali::Integration::Trace::InstallLogContextFunction(logContextFunction); + // We always need the first update! mStatus.keepUpdating = Integration::KeepUpdating::STAGE_KEEP_RENDERING; + mGraphics.Initialize(); mGraphicsController.InitializeGLES(mGlAbstraction); - mGraphicsController.Initialize(mGlSyncAbstraction, mGlContextHelperAbstraction); + mGraphicsController.Initialize(mGraphicsSyncImplementation, mGlContextHelperAbstraction, mGraphics); mCore = Dali::Integration::Core::New(mRenderController, mPlatformAbstraction, @@ -66,12 +74,6 @@ void TestGraphicsApplication::CreateCore() mCore->ContextCreated(); - Dali::Integration::Log::LogFunction logFunction(&TestGraphicsApplication::LogMessage); - Dali::Integration::Log::InstallLogFunction(logFunction); - - Dali::Integration::Trace::LogContextFunction logContextFunction(&TestGraphicsApplication::LogContext); - Dali::Integration::Trace::InstallLogContextFunction(logContextFunction); - Dali::Integration::Trace::LogContext(true, "Test"); } @@ -79,6 +81,13 @@ void TestGraphicsApplication::CreateScene() { mScene = Dali::Integration::Scene::New(Size(static_cast(mSurfaceWidth), static_cast(mSurfaceHeight))); mScene.SetDpi(Vector2(static_cast(mDpi.x), static_cast(mDpi.y))); + + Graphics::RenderTargetCreateInfo createInfo{}; + createInfo.SetSurface({nullptr}) + .SetExtent({mSurfaceWidth, mSurfaceHeight}) + .SetPreTransform(0 | Graphics::RenderTargetTransformFlagBits::TRANSFORM_IDENTITY_BIT); + //mRenderTarget = mGraphicsController.CreateRenderTarget(createInfo, nullptr); + mScene.SetSurfaceRenderTarget(createInfo); } void TestGraphicsApplication::InitializeCore() @@ -93,15 +102,15 @@ TestGraphicsApplication::~TestGraphicsApplication() delete mCore; } -void TestGraphicsApplication::LogContext(bool start, const char* tag) +void TestGraphicsApplication::LogContext(bool start, const char* tag, const char* message) { if(start) { - fprintf(stderr, "INFO: Trace Start: %s\n", tag); + fprintf(stderr, "INFO: Trace Start: %s %s\n", tag, message ? message : ""); } else { - fprintf(stderr, "INFO: Trace End: %s\n", tag); + fprintf(stderr, "INFO: Trace End: %s %s\n", tag, message ? message : ""); } } @@ -111,13 +120,16 @@ void TestGraphicsApplication::LogMessage(Dali::Integration::Log::DebugPriority l { switch(level) { - case Dali::Integration::Log::DebugInfo: + case Dali::Integration::Log::DEBUG: + fprintf(stderr, "DEBUG: %s", message.c_str()); + break; + case Dali::Integration::Log::INFO: fprintf(stderr, "INFO: %s", message.c_str()); break; - case Dali::Integration::Log::DebugWarning: + case Dali::Integration::Log::WARNING: fprintf(stderr, "WARN: %s", message.c_str()); break; - case Dali::Integration::Log::DebugError: + case Dali::Integration::Log::ERROR: fprintf(stderr, "ERROR: %s", message.c_str()); break; default: @@ -152,11 +164,6 @@ TestGlAbstraction& TestGraphicsApplication::GetGlAbstraction() return static_cast(mGraphicsController.GetGlAbstraction()); } -TestGlSyncAbstraction& TestGraphicsApplication::GetGlSyncAbstraction() -{ - return static_cast(mGraphicsController.GetGlSyncAbstraction()); -} - TestGlContextHelperAbstraction& TestGraphicsApplication::GetGlContextHelperAbstraction() { return static_cast(mGraphicsController.GetGlContextHelperAbstraction()); @@ -185,7 +192,7 @@ void TestGraphicsApplication::DoUpdate(uint32_t intervalMilliseconds, const char uint32_t nextVSyncTime = mLastVSyncTime + intervalMilliseconds; float elapsedSeconds = static_cast(intervalMilliseconds) * 0.001f; - mCore->Update(elapsedSeconds, mLastVSyncTime, nextVSyncTime, mStatus, false, false); + mCore->Update(elapsedSeconds, mLastVSyncTime, nextVSyncTime, mStatus, false, false, false); GetRenderController().Initialize(); @@ -200,10 +207,10 @@ bool TestGraphicsApplication::Render(uint32_t intervalMilliseconds, const char* mRenderStatus.SetNeedsUpdate(false); mRenderStatus.SetNeedsPostRender(false); - mCore->PreRender(mRenderStatus, false /*do not force clear*/, false /*do not skip rendering*/); + mCore->PreRender(mRenderStatus, false /*do not force clear*/); mCore->RenderScene(mRenderStatus, mScene, true /*render the off-screen buffers*/); mCore->RenderScene(mRenderStatus, mScene, false /*render the surface*/); - mCore->PostRender(false /*do not skip rendering*/); + mCore->PostRender(); mFrame++; @@ -214,7 +221,7 @@ bool TestGraphicsApplication::PreRenderWithPartialUpdate(uint32_t intervalMillis { DoUpdate(intervalMilliseconds, location); - mCore->PreRender(mRenderStatus, false /*do not force clear*/, false /*do not skip rendering*/); + mCore->PreRender(mRenderStatus, false /*do not force clear*/); mCore->PreRender(mScene, damagedRects); return mStatus.KeepUpdating() || mRenderStatus.NeedsUpdate(); @@ -224,7 +231,7 @@ bool TestGraphicsApplication::RenderWithPartialUpdate(std::vector>& da { mCore->RenderScene(mRenderStatus, mScene, true /*render the off-screen buffers*/, clippingRect); mCore->RenderScene(mRenderStatus, mScene, false /*render the surface*/, clippingRect); - mCore->PostRender(false /*do not skip rendering*/); + mCore->PostRender(); mFrame++; @@ -255,10 +262,10 @@ bool TestGraphicsApplication::GetRenderNeedsPostRender() bool TestGraphicsApplication::RenderOnly() { // Update Time values - mCore->PreRender(mRenderStatus, false /*do not force clear*/, false /*do not skip rendering*/); + mCore->PreRender(mRenderStatus, false /*do not force clear*/); mCore->RenderScene(mRenderStatus, mScene, true /*render the off-screen buffers*/); mCore->RenderScene(mRenderStatus, mScene, false /*render the surface*/); - mCore->PostRender(false /*do not skip rendering*/); + mCore->PostRender(); mFrame++; @@ -269,7 +276,7 @@ void TestGraphicsApplication::ResetContext() { mCore->ContextDestroyed(); mGraphicsController.InitializeGLES(mGlAbstraction); - mGraphicsController.Initialize(mGlSyncAbstraction, mGlContextHelperAbstraction); + mGraphicsController.Initialize(mGraphicsSyncImplementation, mGlContextHelperAbstraction, mGraphics); mCore->ContextCreated(); }