Revert "Add OffscreenApplication"
[platform/core/uifw/dali-adaptor.git] / dali / integration-api / adaptor-framework / native-render-surface.h
1 #ifndef DALI_NATIVE_RENDER_SURFACE_H
2 #define DALI_NATIVE_RENDER_SURFACE_H
3
4 /*
5  * Copyright (c) 2019 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // INTERNAL INCLUDES
22 #include <dali/public-api/dali-adaptor-common.h>
23 #include <dali/integration-api/adaptor-framework/render-surface-interface.h>
24
25 namespace Dali
26 {
27
28 class TriggerEventInterface;
29
30 /**
31  * Native interface of render surface.
32  */
33 class DALI_ADAPTOR_API NativeRenderSurface : public Dali::RenderSurfaceInterface
34 {
35 public:
36
37   /**
38    * @brief Default constructor
39    */
40   NativeRenderSurface() = default;
41
42   /**
43    * @brief Destructor
44    */
45   virtual ~NativeRenderSurface() = default;
46
47 public: // API
48
49   /**
50    * @brief Get the render surface the adaptor is using to render to.
51    * @return reference to current render surface
52    */
53   virtual Any GetDrawable() = 0;
54
55   /**
56    * @brief Sets the render notification trigger to call when render thread is completed a frame
57    * @param renderNotification to use
58    */
59   virtual void SetRenderNotification( TriggerEventInterface* renderNotification ) = 0;
60
61   /**
62    * @brief Waits until surface is replaced
63    * After tbm surface is acquired in PostRender, this function is finished.
64    */
65   virtual void WaitUntilSurfaceReplaced() = 0;
66
67 private: // from NativeRenderSurface
68
69   /**
70    * @brief Create a renderable
71    */
72   virtual void CreateNativeRenderable() = 0;
73
74   /**
75    * @brief Release a drawable
76    */
77   virtual void ReleaseDrawable() = 0;
78
79 protected:
80
81   // Undefined
82   NativeRenderSurface(const NativeRenderSurface&) = delete;
83
84   // Undefined
85   NativeRenderSurface& operator=(const NativeRenderSurface& rhs) = delete;
86
87 };
88
89 } // namespace Dali
90
91 #endif // DALI_NATIVE_RENDER_SURFACE_H