a42715abad1de267c5fa7c53b1596f55501bba7a
[platform/core/uifw/dali-core.git] / dali / internal / update / nodes / scene-graph-layer.cpp
1 //
2 // Copyright (c) 2014 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Flora License, Version 1.0 (the License);
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //     http://floralicense.org/license/
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an AS IS BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //
16
17 // CLASS HEADER
18 #include <dali/internal/update/nodes/scene-graph-layer.h>
19
20 // INTERNAL INCLUDES
21 #include <dali/public-api/common/dali-common.h>
22
23
24 using namespace std;
25
26 namespace Dali
27 {
28
29 namespace Internal
30 {
31
32 namespace SceneGraph
33 {
34
35 SceneGraph::Layer* Layer::New()
36 {
37   return new Layer();
38 }
39
40 Layer::Layer()
41 : mSortFunction( Dali::Layer::ZValue ),
42   mClippingBox( 0,0,0,0 ),
43   mIsClipping( false ),
44   mDepthTestDisabled( false )
45 {
46   // layer starts off dirty
47   mAllChildTransformsClean[ 0 ] = false;
48   mAllChildTransformsClean[ 1 ] = false;
49 }
50
51 Layer::~Layer()
52 {
53 }
54
55 void Layer::SetSortFunction( Dali::Layer::SortFunctionType function )
56 {
57   if( mSortFunction != function )
58   {
59     // changing the sort function makes the layer dirty
60     mAllChildTransformsClean[ 0 ] = false;
61     mAllChildTransformsClean[ 1 ] = false;
62     mSortFunction = function;
63   }
64 }
65
66 void Layer::SetClipping(bool enabled)
67 {
68   mIsClipping = enabled;
69 }
70
71 void Layer::SetClippingBox(const Dali::ClippingBox& box)
72 {
73   mClippingBox.Set(box.x, box.y, box.width, box.height);
74 }
75
76 void Layer::SetDepthTestDisabled( bool disable )
77 {
78   mDepthTestDisabled = disable;
79 }
80
81 bool Layer::IsDepthTestDisabled() const
82 {
83   return mDepthTestDisabled;
84 }
85
86 } // namespace SceneGraph
87
88 } // namespace Internal
89
90 } // namespace Dali