using QtVideoTimer to call DrawFrame on the GUI thread. closes #717

This commit is contained in:
rachytski 2012-03-10 14:33:20 +04:00 committed by Alex Zolotarev
parent 307a64aa57
commit ecece66681

View file

@ -184,11 +184,14 @@ namespace qt
VideoTimer * DrawWidget::CreateVideoTimer()
{
#ifdef OMIM_OS_MAC
return CreateAppleVideoTimer(bind(&DrawWidget::DrawFrame, this));
#else
//#ifdef OMIM_OS_MAC
// return CreateAppleVideoTimer(bind(&DrawWidget::DrawFrame, this));
//#else
/// Using timer, which doesn't use the separate thread
/// for performing an action. This avoids race conditions in Framework.
/// see issue #717
return new QtVideoTimer(this, bind(&DrawWidget::DrawFrame, this));
#endif
//#endif
}
void DrawWidget::ScaleChanged(int action)