Exemplo n.º 1
0
        internal void Stoping(CNamedTimer Timer, double TimeThisRun)
        {
            int Count = m_CallStack.Count;

            if (Count > 1)
            {
                m_CallStack[Count - 2].m_TotalTimeExcludingSubroutines -= TimeThisRun;
            }
            m_CallStack.RemoveAt(Count - 1);
        }
Exemplo n.º 2
0
 internal void AddTimer(CNamedTimer Timer)
 {
     m_NamedTimerArray.Add(Timer);
 }
Exemplo n.º 3
0
 internal void Stoping(CNamedTimer Timer, double TimeThisRun)
 {
     int Count = m_CallStack.Count;
     if(Count > 1)
     {
         m_CallStack[Count - 2].m_TotalTimeExcludingSubroutines -= TimeThisRun;
     }
     m_CallStack.RemoveAt(Count - 1);
 }
Exemplo n.º 4
0
 internal void Starting(CNamedTimer Timer)
 {
     m_CallStack.Add(Timer);
 }
Exemplo n.º 5
0
 internal void AddTimer(CNamedTimer Timer)
 {
     m_NamedTimerArray.Add(Timer);
 }
Exemplo n.º 6
0
 internal void Starting(CNamedTimer Timer)
 {
     m_CallStack.Add(Timer);
 }