Merge "Fix documentation for Text::EditableControlInterface interface override functi...
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / visuals / animated-image / fixed-image-cache.h
index 72484a4..ec7f419 100644 (file)
@@ -46,7 +46,13 @@ public:
                    ImageCache::FrameReadyObserver& observer,
                    unsigned int                    batchSize );
 
-  virtual ~FixedImageCache();
+  ~FixedImageCache() override;
+
+  /**
+   * Get the Nth frame. If it's not ready, this will trigger the
+   * sending of FrameReady() when the image becomes ready.
+   */
+  TextureSet Frame( uint32_t frameIndex ) override;
 
   /**
    * Get the first frame. If it's not ready, this will trigger the
@@ -55,11 +61,9 @@ public:
   TextureSet FirstFrame() override;
 
   /**
-   * Get the next frame. If it's not ready, this will trigger the
-   * sending of FrameReady() when the image becomes ready.
-   * This will trigger the loading of the next batch.
+   * Get the interval of Nth frame.
    */
-  TextureSet NextFrame() override;
+  uint32_t GetFrameInterval( uint32_t frameIndex ) override;
 
 private:
   /**