Commit 799c9609fbd3526e10f180537d35c9391163ff04
1 parent
a209b08e
Batching clean-up
BATCHING_ENABLED property has been moved to ImageVisual Change-Id: Ib720deb1722f8959ba2f182babc888321fe70ca5
Showing
1 changed file
with
2 additions
and
2 deletions
examples/homescreen-benchmark/homescreen-benchmark.cpp
| ... | ... | @@ -248,10 +248,10 @@ public: |
| 248 | 248 | Property::Map map; |
| 249 | 249 | std::stringstream imagePath; |
| 250 | 250 | imagePath << IMAGE_PATH_PREFIX << currentIconIndex << IMAGE_PATH_POSTFIX; |
| 251 | - map[ Dali::Toolkit::BatchImageVisual::Property::URL ] = imagePath.str(); | |
| 251 | + map[ Dali::Toolkit::ImageVisual::Property::URL ] = imagePath.str(); | |
| 252 | 252 | |
| 253 | 253 | // Enable/disable batching |
| 254 | - map[ Toolkit::Visual::Property::BATCHING_ENABLED ] = mConfig.mBatchingEnabled; | |
| 254 | + map[ Toolkit::ImageVisual::Property::BATCHING_ENABLED ] = mConfig.mBatchingEnabled; | |
| 255 | 255 | |
| 256 | 256 | imageView.SetProperty( Toolkit::ImageView::Property::IMAGE, map ); |
| 257 | 257 | imageView.SetResizePolicy( ResizePolicy::SIZE_RELATIVE_TO_PARENT, Dimension::ALL_DIMENSIONS ); | ... | ... |