Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'anim/controller.hpp')
-rw-r--r--anim/controller.hpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/anim/controller.hpp b/anim/controller.hpp
index 398f191a4d..a26f5e2721 100644
--- a/anim/controller.hpp
+++ b/anim/controller.hpp
@@ -25,6 +25,8 @@ namespace anim
int m_IdleThreshold;
int m_IdleFrames;
+ void AddTaskImpl(list<shared_ptr<Task> > & l, shared_ptr<Task> const & task);
+ void HasVisualTasksImpl(list<shared_ptr<Task> > & l, bool * res) const;
static void CopyAndClearTasks(list<shared_ptr<Task> > & from, list<shared_ptr<Task> > & to);
static void MergeTasks(list<shared_ptr<Task> > & from, list<shared_ptr<Task> > & to);
@@ -37,6 +39,8 @@ namespace anim
void AddTask(shared_ptr<Task> const & task);
// Do we have animation tasks, which are currently running?
bool HasTasks();
+ // Do we have visual animation tasks, which are currently running?
+ bool HasVisualTasks();
// Lock/Unlock controller. Locked controller
// is considered to be in "transition" mode from one task to another
// and this situation is taken into account into RenderPolicy when
@@ -53,7 +57,7 @@ namespace anim
// catch the Controller up and animate everything smoothly without
// interrupting rendering process, which might had happened in these
// "frames-in-the-middle".
- bool IsPreWarmed() const;
+ bool IsVisuallyPreWarmed() const;
// Getting current simulation time
double GetCurrentTime() const;
};