Example #1
0
        internal PerformanceGraph(Profiler profiler, ProfilerConfig.UiViewConfig uiviewConfig, Vector2 size) : base(profiler, uiviewConfig, size)
        {
            for (var i = 0; i < MaxFrames; i++)
            {
                _frames.Enqueue(new Frame());
            }

            DisplayedFrameCount = MaxFrames;
        }
Example #2
0
 internal ProfilerSummary(Profiler profiler, ProfilerConfig.UiViewConfig uiviewConfig, Vector2 size) : base(profiler, uiviewConfig, size)
 {
 }