From 799c9609fbd3526e10f180537d35c9391163ff04 Mon Sep 17 00:00:00 2001 From: "adam.b" Date: Thu, 4 Aug 2016 14:47:15 +0100 Subject: [PATCH] Batching clean-up BATCHING_ENABLED property has been moved to ImageVisual Change-Id: Ib720deb1722f8959ba2f182babc888321fe70ca5 --- examples/homescreen-benchmark/homescreen-benchmark.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ); -- 2.7.4