Migration Guide

Following an overview about interface changes between Candera V3.1.1 and Candera V3.2.0. 
 
 
 
 
 
 
 Description 
 Candera V3.1.1 
 
 Candera V3.2.0 
 
 
 
 
 BitmapImage2D::MemoryPool enumeration changed 
 
 bitmapImage2D->SetMemoryPool(BitmapImage2D::SystemMemory);
 bitmapImage2D->SetMemoryPool(BitmapImage2D::FlashMemory);
 
 
 
 bitmapImage2D->SetMemoryPool( BitmapImage2D::ClientMemory );
 
 
 
 
 Deprecated SharedPtrProperty::Set(T* value), replaced with SharedPtrProperty::Set(const TPtr& value) . 
 
 Image2D* image;
 m_image.Set(image);
 
 
 
 SharedPtrProperty<Image2D> image;
 m_image.Set(image);
 
 
 
 
 Face Index introduced for TTC (True Type Font Container) support. 
 
 UInt8 faceId = fontStore->GetDescriptorId("Vera");
 
 
 
 UInt8 faceId = fontStore->GetDescriptorId("Vera", 0);
 
  