X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Finternal%2Fupdate%2Fnodes%2Fscene-graph-layer.cpp;h=46bb14cb00ddf998d64eea6eda5a155e0f18ddca;hb=0643c768fd100bd7ffb522e3358b88d075bc1d2e;hp=8cf81551d38427c7a83c6ada5de51c63c35761cc;hpb=60e423d20ce223335e1188eeea05e1094cfaae7a;p=platform%2Fcore%2Fuifw%2Fdali-core.git diff --git a/dali/internal/update/nodes/scene-graph-layer.cpp b/dali/internal/update/nodes/scene-graph-layer.cpp index 8cf8155..46bb14c 100644 --- a/dali/internal/update/nodes/scene-graph-layer.cpp +++ b/dali/internal/update/nodes/scene-graph-layer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 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. @@ -33,6 +33,8 @@ namespace SceneGraph SceneGraph::Layer* Layer::New() { + // Layers are currently heap allocated, unlike Nodes which are in a memory pool + // However Node::Delete( layer ) will correctly delete a layer / node depending on type return new Layer(); } @@ -42,9 +44,12 @@ Layer::Layer() mLastCamera( NULL ), mBehavior( Dali::Layer::LAYER_2D ), mIsClipping( false ), - mDepthTestDisabled( false ), + mDepthTestDisabled( true ), mIsDefaultSortFunction( true ) { + // set a flag the node to say this is a layer + mIsLayer = true; + // layer starts off dirty mAllChildTransformsClean[ 0 ] = false; mAllChildTransformsClean[ 1 ] = false; @@ -97,11 +102,26 @@ void Layer::SetDepthTestDisabled( bool disable ) bool Layer::IsDepthTestDisabled() const { - return ( mBehavior == Dali::Layer::LAYER_2D ) || mDepthTestDisabled; + return mDepthTestDisabled; +} + +void Layer::ClearRenderables() +{ + colorRenderables.Clear(); + overlayRenderables.Clear(); } } // namespace SceneGraph +template <> +void OwnerPointer::Reset() +{ + if( mObject != NULL ) + { + Dali::Internal::SceneGraph::Node::Delete( mObject ); + mObject = NULL; + } +} } // namespace Internal } // namespace Dali