Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

bool Impala::Visualization::RotorBrowser::RotorView::HasNextStill (  )  [inline, private]

Definition at line 427 of file RotorView.h.

References mLastTime, mTimer, mVideoSource, Impala::Timer::SplitTime(), and sStillFrameWait.

Referenced by UpdateStill().

00428     {
00429         double cpuTime = mTimer->SplitTime();
00430         double frTime  = mVideoSource ? 0.04 : RotorView::sStillFrameWait*0.01;
00431         if (cpuTime-mLastTime >= frTime)
00432         {
00433             mLastTime = cpuTime;
00434             return true;
00435         }
00436         return false;
00437     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:26:00 2011 for ImpalaSrc by  doxygen 1.5.1