Ejemplo n.º 1
0
        static Profiler()
        {
            m_Context       = new List <ContextAndTick>();
            m_ThisFrameData = new List <ProfileData>();
            m_AllFrameData  = new List <ProfileData>();

            m_Timer = new HighPerformanceTimer();
            m_Timer.Start();
        }
Ejemplo n.º 2
0
 static Profiler()
 {
     m_Context = new List<ContextAndTick>();
     m_ThisFrameData = new List<Tuple<string[], double>>();
     m_AllFrameData = new List<ProfileData>();
     m_TotalTimeData = new ProfileData(null, 0d);
     m_Timer = new HighPerformanceTimer();
     m_Timer.Start();
 }
Ejemplo n.º 3
0
        static Profiler()
        {
            m_Context = new List<ContextAndTick>();
            m_ThisFrameData = new List<ProfileData>();
            m_AllFrameData = new List<ProfileData>();

            m_Timer = new HighPerformanceTimer();
            m_Timer.Start();
        }
Ejemplo n.º 4
0
 static Profiler()
 {
     m_Context       = new List <ContextAndTick>();
     m_ThisFrameData = new List <Tuple <string[], double> >();
     m_AllFrameData  = new List <ProfileData>();
     m_TotalTimeData = new ProfileData(null, 0d);
     m_Timer         = new HighPerformanceTimer();
     m_Timer.Start();
 }