forked from organicmaps/organicmaps
fixed picture freezing after animation end.
This commit is contained in:
parent
bce75c20de
commit
e16c4e4c13
2 changed files with 7 additions and 2 deletions
|
@ -112,12 +112,15 @@ void RenderPolicy::StopRotate(double a, double)
|
|||
|
||||
void RenderPolicy::BeginFrame(shared_ptr<PaintEvent> const & e, ScreenBase const & s)
|
||||
{
|
||||
/// processing animations at the beginning of the frame.
|
||||
/// it's crucial as in this function could happen transition from
|
||||
/// animating to non-animating state which should be properly handled
|
||||
/// in the following RenderPolicy::DrawFrame call.
|
||||
m_controller->PerformStep();
|
||||
}
|
||||
|
||||
void RenderPolicy::EndFrame(shared_ptr<PaintEvent> const & e, ScreenBase const & s)
|
||||
{
|
||||
/// processing animations at the end of the frame
|
||||
m_controller->PerformStep();
|
||||
}
|
||||
|
||||
bool RenderPolicy::DoSupportRotation() const
|
||||
|
|
|
@ -19,6 +19,7 @@ void RotateScreenTask::OnStep(double ts)
|
|||
anim::AngleInterpolation::OnStep(ts);
|
||||
Navigator & nav = m_framework->GetNavigator();
|
||||
nav.SetAngle(nav.Screen().GetAngle() + m_outAngle - prevAngle);
|
||||
m_framework->Invalidate();
|
||||
}
|
||||
|
||||
void RotateScreenTask::OnEnd(double ts)
|
||||
|
@ -26,6 +27,7 @@ void RotateScreenTask::OnEnd(double ts)
|
|||
anim::AngleInterpolation::OnEnd(ts);
|
||||
Navigator & nav = m_framework->GetNavigator();
|
||||
nav.SetAngle(m_outAngle);
|
||||
m_framework->Invalidate();
|
||||
}
|
||||
|
||||
bool RotateScreenTask::IsVisual() const
|
||||
|
|
Loading…
Add table
Reference in a new issue