Added memory pool logging
[platform/core/uifw/dali-core.git] / dali / integration-api / core.cpp
index 9c26043..870861b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2022 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.
 // CLASS HEADER
 #include <dali/integration-api/core.h>
 
-// EXTERNAL INCLUDES
-#include <iostream>
-#include <stdarg.h>
-
 // INTERNAL INCLUDES
-#include <dali/public-api/common/dali-common.h>
 #include <dali/integration-api/events/event.h>
-#include <dali/integration-api/gl-sync-abstraction.h>
+#include <dali/integration-api/processor-interface.h>
 #include <dali/internal/common/core-impl.h>
+#include <dali/public-api/actors/layer.h>
+#include <dali/public-api/common/dali-common.h>
+#include <dali/public-api/render-tasks/render-task-list.h>
 
 namespace Dali
 {
-
 namespace Integration
 {
-
-namespace KeepUpdating
-{
-
-const unsigned int NOT_REQUESTED = 0x00; ///< Zero means that no further updates are required
-
-// Bit-field values
-const unsigned int STAGE_KEEP_RENDERING   = 0x01;  ///< Stage::KeepRendering() is being used
-const unsigned int INCOMING_MESSAGES      = 0x02;  ///< Event-thread is sending messages to update-thread
-const unsigned int ANIMATIONS_RUNNING     = 0x04;  ///< Animations are ongoing
-const unsigned int DYNAMICS_CHANGED       = 0x08;  ///< A dynamics simulation is running
-const unsigned int LOADING_RESOURCES      = 0x10;  ///< Resources are being loaded
-const unsigned int NOTIFICATIONS_PENDING  = 0x20;  ///< Notifications are pending for the event-thread
-const unsigned int MONITORING_PERFORMANCE = 0x40;  ///< The --enable-performance-monitor option is being used
-const unsigned int RENDER_TASK_SYNC       = 0x80;  ///< The refresh once render task is waiting for render sync
-
-} // namespace KeepUpdating
-
-Core* Core::New(RenderController& renderController, PlatformAbstraction& platformAbstraction,
-                GlAbstraction& glAbstraction, GlSyncAbstraction& glSyncAbstraction, GestureManager& gestureManager)
-{
-  Core* instance = new Core;
-  instance->mImpl = new Internal::Core( renderController, platformAbstraction, glAbstraction, glSyncAbstraction, gestureManager );
+Core* Core::New(RenderController&      renderController,
+                PlatformAbstraction&   platformAbstraction,
+                Graphics::Controller&  graphicsController,
+                RenderToFrameBuffer    renderToFboEnabled,
+                DepthBufferAvailable   depthBufferAvailable,
+                StencilBufferAvailable stencilBufferAvailable,
+                PartialUpdateAvailable partialUpdateAvailable)
+{
+  Core* instance  = new Core;
+  instance->mImpl = new Internal::Core(renderController,
+                                       platformAbstraction,
+                                       graphicsController,
+                                       renderToFboEnabled,
+                                       depthBufferAvailable,
+                                       stencilBufferAvailable,
+                                       partialUpdateAvailable);
 
   return instance;
 }
@@ -65,39 +55,34 @@ Core::~Core()
   delete mImpl;
 }
 
-void Core::ContextCreated()
-{
-  mImpl->ContextCreated();
-}
-
-void Core::ContextToBeDestroyed()
+void Core::Initialize()
 {
-  mImpl->ContextToBeDestroyed();
+  mImpl->Initialize();
 }
 
-void Core::SurfaceResized(unsigned int width, unsigned int height)
+ContextNotifierInterface* Core::GetContextNotifier()
 {
-  mImpl->SurfaceResized(width, height);
+  return mImpl->GetContextNotifier();
 }
 
-void Core::SetDpi(unsigned int dpiHorizontal, unsigned int dpiVertical)
+void Core::ContextCreated()
 {
-  mImpl->SetDpi(dpiHorizontal, dpiVertical);
+  mImpl->ContextCreated();
 }
 
-void Core::SetMinimumFrameTimeInterval(unsigned int interval)
+void Core::ContextDestroyed()
 {
-  mImpl->SetMinimumFrameTimeInterval(interval);
+  mImpl->ContextDestroyed();
 }
 
-void Core::Suspend()
+void Core::RecoverFromContextLoss()
 {
-  mImpl->Suspend();
+  mImpl->RecoverFromContextLoss();
 }
 
-void Core::Resume()
+void Core::SceneCreated()
 {
-  mImpl->Resume();
+  mImpl->SceneCreated();
 }
 
 void Core::QueueEvent(const Event& event)
@@ -110,68 +95,63 @@ void Core::ProcessEvents()
   mImpl->ProcessEvents();
 }
 
-void Core::UpdateTouchData(const TouchData& touch)
-{
-  mImpl->UpdateTouchData(touch);
-}
-
-unsigned int Core::GetMaximumUpdateCount() const
+uint32_t Core::GetMaximumUpdateCount() const
 {
   return mImpl->GetMaximumUpdateCount();
 }
 
-void Core::Update( UpdateStatus& status )
+void Core::Update(float elapsedSeconds, uint32_t lastVSyncTimeMilliseconds, uint32_t nextVSyncTimeMilliseconds, UpdateStatus& status, bool renderToFboEnabled, bool isRenderingToFbo, bool uploadOnly)
 {
-  mImpl->Update( status );
+  mImpl->Update(elapsedSeconds, lastVSyncTimeMilliseconds, nextVSyncTimeMilliseconds, status, renderToFboEnabled, isRenderingToFbo, uploadOnly);
 }
 
-void Core::Render( RenderStatus& status )
+void Core::PreRender(RenderStatus& status, bool forceClear)
 {
-  mImpl->Render( status );
+  mImpl->PreRender(status, forceClear);
 }
 
-void Core::Sleep()
+void Core::PreRender(Integration::Scene& scene, std::vector<Rect<int>>& damagedRects)
 {
-  mImpl->Sleep();
+  mImpl->PreRender(scene, damagedRects);
 }
 
-void Core::WakeUp()
+void Core::RenderScene(RenderStatus& status, Integration::Scene& scene, bool renderToFbo)
 {
-  mImpl->WakeUp();
+  mImpl->RenderScene(status, scene, renderToFbo);
 }
 
-void Core::VSync( unsigned int frameNumber, unsigned int seconds, unsigned int microseconds )
+void Core::RenderScene(RenderStatus& status, Integration::Scene& scene, bool renderToFbo, Rect<int>& clippingRect)
 {
-  mImpl->VSync( frameNumber, seconds, microseconds );
+  mImpl->RenderScene(status, scene, renderToFbo, clippingRect);
 }
 
-SystemOverlay& Core::GetSystemOverlay()
+void Core::PostRender()
 {
-  return mImpl->GetSystemOverlay();
+  mImpl->PostRender();
 }
 
-void Core::SetViewMode( ViewMode viewMode )
+void Core::RegisterProcessor(Processor& processor, bool postProcessor)
 {
-  mImpl->SetViewMode( viewMode );
+  mImpl->RegisterProcessor(processor, postProcessor);
 }
 
-ViewMode Core::GetViewMode() const
+void Core::UnregisterProcessor(Processor& processor, bool postProcessor)
 {
-  return mImpl->GetViewMode();
+  mImpl->UnregisterProcessor(processor, postProcessor);
 }
 
-void Core::SetStereoBase( float stereoBase )
+ObjectRegistry Core::GetObjectRegistry() const
 {
-  mImpl->SetStereoBase( stereoBase );
+  return ObjectRegistry(&mImpl->GetObjectRegistry());
 }
 
-float Core::GetStereoBase() const
+void Core::LogMemoryPools() const
 {
-  return mImpl->GetStereoBase();
+  mImpl->LogMemoryPools();
 }
 
 Core::Core()
-: mImpl( NULL )
+: mImpl(nullptr)
 {
 }