Remove RenderSurface from Core
[platform/core/uifw/dali-adaptor.git] / dali / internal / adaptor / common / adaptor-internal-services.h
index 4769f4b..ab88729 100644 (file)
@@ -2,7 +2,7 @@
 #define DALI_INTERNAL_ADAPTOR_INTERNAL_SERVICES_H
 
 /*
- * 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.
@@ -23,7 +23,6 @@
 #include <dali/integration-api/gl-abstraction.h>
 
 // INTERNAL INCLUDES
-#include <dali/integration-api/render-surface.h>
 #include <dali/integration-api/adaptor-framework/render-surface-interface.h>
 #include <dali/integration-api/adaptor-framework/trigger-event-interface.h>
 #include <dali/internal/graphics/common/graphics-interface.h>
@@ -42,6 +41,9 @@ namespace Internal
 namespace Adaptor
 {
 
+class SceneHolder;
+using WindowContainer = std::vector<Internal::Adaptor::SceneHolder*>;
+
 /**
  * A class to contain various interfaces provided by the adaptor which
  * can be used by the cross platform parts of adaptor.
@@ -107,6 +109,11 @@ public:
    */
   virtual TraceInterface& GetSystemTraceInterface() = 0;
 
+  /**
+   * Used to access the list of windows from the Render thread
+   * @param[out] windows The list of created windows
+   */
+  virtual void GetWindowContainerInterface( WindowContainer& windows ) = 0;
 
 protected: