Inheritance: GearConfig
Ejemplo n.º 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;
        }
Ejemplo n.º 2
0
 internal ProfilerSummary(Profiler profiler, ProfilerConfig.UiViewConfig uiviewConfig, Vector2 size)
     : base(profiler, uiviewConfig, size)
 {
 }
Ejemplo n.º 3
0
 internal TimeRuler(Profiler profiler, ProfilerConfig.TimeRulerUIViewConfig uiviewConfig, Vector2 size, int targetSampleFrames)
     : base(profiler, uiviewConfig, size)
 {
     TargetSampleFrames = targetSampleFrames;
 }