From: Richard Underhill Date: Wed, 24 Jun 2015 11:00:48 +0000 (+0100) Subject: Removed DepthIndex methods from public-api X-Git-Tag: dali_1.0.47~2^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F03%2F42203%2F3;p=platform%2Fcore%2Fuifw%2Fdali-demo.git Removed DepthIndex methods from public-api Needs: https://review.tizen.org/gerrit/#/c/42196/ https://review.tizen.org/gerrit/#/c/42201/ Change-Id: I21487d2896dabf45009393bdf615d128db6842f3 Signed-off-by: Richard Underhill --- diff --git a/demo/dali-table-view.cpp b/demo/dali-table-view.cpp index 2dd8845..f9d5cfa 100644 --- a/demo/dali-table-view.cpp +++ b/demo/dali-table-view.cpp @@ -283,7 +283,7 @@ void DaliTableView::Initialize( Application& application ) backgroundColourActor.SetSizeModeFactor( Vector3( 1.0f, 1.5f, 1.0f ) ); // Force the filled background right to the back - backgroundColourActor.SetDepthIndex( DemoHelper::BACKGROUND_DEPTH_INDEX ); + backgroundColourActor.SetSortModifier( DemoHelper::BACKGROUND_DEPTH_INDEX ); mScrollViewLayer.Add( backgroundColourActor ); // Populate background and bubbles - needs to be scrollViewLayer so scroll ends show @@ -769,7 +769,7 @@ void DaliTableView::AddBackgroundActors( Actor layer, int count, BufferImage dis dfActor.SetParentOrigin( ParentOrigin::CENTER ); // Force the bubbles just in front of the solid background - dfActor.SetDepthIndex( DemoHelper::BACKGROUND_DEPTH_INDEX + 1 ); + dfActor.SetSortModifier( DemoHelper::BACKGROUND_DEPTH_INDEX + 1 ); ShaderEffect effect = Toolkit::CreateDistanceFieldEffect(); dfActor.SetShaderEffect( effect );