2018-01-05 20:21:19 +09:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-02-26 18:28:01 +09: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 10:55:29 +09:00
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Debug
|
2017-02-26 18:28:01 +09:00
|
|
|
|
{
|
2017-05-15 10:55:29 +09:00
|
|
|
|
public class GCSettings : SettingsSubsection
|
2017-02-26 18:28:01 +09:00
|
|
|
|
{
|
|
|
|
|
protected override string Header => "Garbage Collector";
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(FrameworkDebugConfigManager config)
|
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2017-05-15 10:55:29 +09:00
|
|
|
|
new SettingsEnumDropdown<GCLatencyMode>
|
2017-02-26 18:28:01 +09:00
|
|
|
|
{
|
|
|
|
|
LabelText = "Active mode",
|
2017-05-19 22:53:08 +09:00
|
|
|
|
Bindable = config.GetBindable<GCLatencyMode>(DebugSetting.ActiveGCMode)
|
2017-02-26 18:28:01 +09:00
|
|
|
|
},
|
2017-10-21 13:16:06 +10:30
|
|
|
|
new SettingsButton
|
2017-02-26 18:28:01 +09:00
|
|
|
|
{
|
|
|
|
|
Text = "Force garbage collection",
|
2017-09-14 12:58:32 +09:00
|
|
|
|
Action = GC.Collect
|
2017-02-26 18:28:01 +09:00
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|