From: adam.b Date: Thu, 4 Aug 2016 13:47:15 +0000 (+0100) Subject: Batching clean-up X-Git-Tag: dali_1.2.0~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F29%2F82629%2F1;p=platform%2Fcore%2Fuifw%2Fdali-demo.git Batching clean-up BATCHING_ENABLED property has been moved to ImageVisual Change-Id: Ib720deb1722f8959ba2f182babc888321fe70ca5 --- diff --git a/examples/homescreen-benchmark/homescreen-benchmark.cpp b/examples/homescreen-benchmark/homescreen-benchmark.cpp index 17ff08e..8e04e44 100644 --- a/examples/homescreen-benchmark/homescreen-benchmark.cpp +++ b/examples/homescreen-benchmark/homescreen-benchmark.cpp @@ -248,10 +248,10 @@ public: Property::Map map; std::stringstream imagePath; imagePath << IMAGE_PATH_PREFIX << currentIconIndex << IMAGE_PATH_POSTFIX; - map[ Dali::Toolkit::BatchImageVisual::Property::URL ] = imagePath.str(); + map[ Dali::Toolkit::ImageVisual::Property::URL ] = imagePath.str(); // Enable/disable batching - map[ Toolkit::Visual::Property::BATCHING_ENABLED ] = mConfig.mBatchingEnabled; + map[ Toolkit::ImageVisual::Property::BATCHING_ENABLED ] = mConfig.mBatchingEnabled; imageView.SetProperty( Toolkit::ImageView::Property::IMAGE, map ); imageView.SetResizePolicy( ResizePolicy::SIZE_RELATIVE_TO_PARENT, Dimension::ALL_DIMENSIONS );