Ejemplo n.º 1
0
bool
Synchronizer::Synchronize (uint64_t tsCurrent, uint64_t tsDelay)
{
  NS_LOG_FUNCTION (this << tsCurrent << tsDelay);
  return DoSynchronize (TimeStepToNanosecond (tsCurrent), 
                        TimeStepToNanosecond (tsDelay));
}
Ejemplo n.º 2
0
 void RenderModule::Synchronize(SceneView* view)
 {
   if (m_flags.test(eSyncRequired))
   {
     DoSynchronize(view);
     m_flags.reset(eSyncRequired);
   }
 }