[Tizen] Add codes for Dali Windows Backend
[platform/core/uifw/dali-core.git] / dali / internal / update / common / scene-graph-buffers.h
1 #ifndef __DALI_INTERNAL_SCENE_GRAPH_BUFFERS_H__
2 #define __DALI_INTERNAL_SCENE_GRAPH_BUFFERS_H__
3
4 /*
5  * Copyright (c) 2014 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/internal/common/buffer-index.h>
23 #include <atomic>
24
25 namespace Dali
26 {
27
28 namespace Internal
29 {
30
31 namespace SceneGraph
32 {
33
34 /**
35  * Node values (position etc.) are double-buffered.  A SceneGraphBuffers object
36  * can be used to keep track of which buffers are being written or read.
37  */
38 class SceneGraphBuffers
39 {
40 public:
41
42   static BufferIndex INITIAL_EVENT_BUFFER_INDEX;  // 0
43   static BufferIndex INITIAL_UPDATE_BUFFER_INDEX; // 1
44
45   /**
46    * Create a SceneGraphBuffers object.
47    */
48   SceneGraphBuffers();
49
50   /**
51    * Non-virtual destructor; not intended as a base class.
52    */
53   ~SceneGraphBuffers();
54
55   /**
56    * Retrieve the current event-buffer index.
57    * @return The buffer index.
58    */
59   BufferIndex GetEventBufferIndex() const { return mEventBufferIndex; }
60
61   /**
62    * Retrieve the current update-buffer index.
63    * @return The buffer index.
64    */
65   BufferIndex GetUpdateBufferIndex() const { return mUpdateBufferIndex; }
66
67   /**
68    * Swap the Event & Update buffer indices.
69   */
70   void Swap();
71
72 private:
73
74   // Undefined
75   SceneGraphBuffers(const SceneGraphBuffers&);
76
77   // Undefined
78   SceneGraphBuffers& operator=(const SceneGraphBuffers& rhs);
79
80 private:
81   std::atomic<BufferIndex> mEventBufferIndex;  ///< 0 or 1 (opposite of mUpdateBufferIndex)
82   BufferIndex mUpdateBufferIndex; ///< 0 or 1 (opposite of mEventBufferIndex)
83 };
84
85 } // namespace SceneGraph
86
87 } // namespace Internal
88
89 } // namespace Dali
90
91 #endif // __DALI_INTERNAL_SCENE_GRAPH_BUFFERS_H__