License conversion from Flora to Apache 2.0
[platform/core/uifw/dali-core.git] / dali / internal / update / manager / update-algorithms.h
1 #ifndef __DALI_INTERNAL_SCENE_GRAPH_UPDATE_ALGORITHMS_H__
2 #define __DALI_INTERNAL_SCENE_GRAPH_UPDATE_ALGORITHMS_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
24 namespace Dali
25 {
26
27 namespace Internal
28 {
29
30 class ResourceManager;
31
32 namespace SceneGraph
33 {
34
35 class Layer;
36 class Node;
37 class PropertyOwner;
38 class RenderQueue;
39 class Shader;
40
41 /**
42  * Recursively apply the constraints on the nodes.
43  * @param[in] node to constraint.
44  * @param[in] updateBufferIndex The current update buffer index.
45  * @return number of active constraints.
46  */
47 unsigned int ConstrainNodes( Node& node, BufferIndex updateBufferIndex );
48
49 /**
50  * Constrain the local properties of the PropertyOwner.
51  * @param[in] propertyOwner The PropertyOwner to constrain
52  * @param[in] updateBufferIndex The current update buffer index.
53  * @return The number of active constraints.
54  */
55 unsigned int ConstrainPropertyOwner( PropertyOwner& propertyOwner, BufferIndex updateBufferIndex );
56
57 /**
58  * Update a tree of nodes, and attached objects.
59  * The inherited properties of each node are recalculated if necessary.
60  * When a renderable attachment is ready to render, PrepareResources() is called and
61  * it is added to the list for its Layer.
62  * @param[in] rootNode The root of a tree of nodes.
63  * @param[in] updateBufferIndex The current update buffer index.
64  * @param[in] resourceManager The resource manager.
65  * @param[in] renderQueue Used to query messages for the next Render.
66  * @param[in] defaultShader The default shader.
67  * @return The cumulative (ORed) dirty flags for the updated nodes
68  */
69 int UpdateNodesAndAttachments( Layer& rootNode,
70                                BufferIndex updateBufferIndex,
71                                ResourceManager& resourceManager,
72                                RenderQueue& renderQueue,
73                                Shader* defaultShader );
74
75 } // namespace SceneGraph
76
77 } // namespace Internal
78
79 } // namespace Dali
80
81 #endif // __DALI_INTERNAL_SCENE_GRAPH_UPDATE_ALGORITHMS_H__
82