Ejemplo n.º 1
0
        protected UIView(ProfilerManager profiler, ProfilerConfig.UIViewConfig uiviewConfig, Vector2 size)
            : base(uiviewConfig.Position, size)
        {
            Profiler = profiler;

            Visible = true;

            VisibleLevelsFlags = uiviewConfig.VisibleLevelsFlags;
        }
Ejemplo n.º 2
0
        internal PerformanceGraph(ProfilerManager profiler, ProfilerConfig.UIViewConfig uiviewConfig, Vector2 size) : base(profiler, uiviewConfig, size)
        {
            for (var i = 0; i < MaxFrames; i++)
            {
                _frames.Enqueue(new Frame());
            }

            DisplayedFrameCount = MaxFrames;
        }
Ejemplo n.º 3
0
 internal ProfilerSummary(ProfilerManager profiler, ProfilerConfig.UIViewConfig uiviewConfig, Vector2 size) : base(profiler, uiviewConfig, size)
 {
 }