2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-02-26 17:28:01 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Runtime;
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Configuration;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
|
2017-05-15 09:55:29 +08:00
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Debug
|
2017-02-26 17:28:01 +08:00
|
|
|
|
{
|
2017-05-15 09:55:29 +08:00
|
|
|
|
public class GCSettings : SettingsSubsection
|
2017-02-26 17:28:01 +08:00
|
|
|
|
{
|
|
|
|
|
protected override string Header => "Garbage Collector";
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(FrameworkDebugConfigManager config)
|
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2017-05-15 09:55:29 +08:00
|
|
|
|
new SettingsEnumDropdown<GCLatencyMode>
|
2017-02-26 17:28:01 +08:00
|
|
|
|
{
|
|
|
|
|
LabelText = "Active mode",
|
2017-05-19 21:53:08 +08:00
|
|
|
|
Bindable = config.GetBindable<GCLatencyMode>(DebugSetting.ActiveGCMode)
|
2017-02-26 17:28:01 +08:00
|
|
|
|
},
|
2017-10-21 10:46:06 +08:00
|
|
|
|
new SettingsButton
|
2017-02-26 17:28:01 +08:00
|
|
|
|
{
|
|
|
|
|
Text = "Force garbage collection",
|
2017-09-14 11:58:32 +08:00
|
|
|
|
Action = GC.Collect
|
2017-02-26 17:28:01 +08:00
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|