osu/osu.Game/Overlays/Options/Graphics/RendererOptions.cs

39 lines
1.3 KiB
C#
Raw Normal View History

2016-11-09 03:38:40 +00:00
using osu.Framework;
2016-11-10 22:40:42 +00:00
using osu.Framework.Allocation;
2016-11-09 03:38:40 +00:00
using osu.Framework.Graphics;
2016-11-03 02:49:26 +00:00
using osu.Framework.Graphics.Sprites;
using osu.Framework.Graphics.UserInterface;
2016-11-09 03:38:40 +00:00
using osu.Game.Configuration;
2016-11-03 02:49:26 +00:00
2016-11-08 02:24:41 +00:00
namespace osu.Game.Overlays.Options.Graphics
2016-11-03 02:49:26 +00:00
{
public class RendererOptions : OptionsSubsection
{
2016-11-09 03:38:40 +00:00
protected override string Header => "Renderer";
2016-11-10 22:40:42 +00:00
[Initializer]
private void Load(OsuConfigManager config)
2016-11-09 03:38:40 +00:00
{
2016-11-10 22:40:42 +00:00
// NOTE: Compatability mode omitted
Children = new Drawable[]
2016-11-09 03:38:40 +00:00
{
2016-11-10 22:40:42 +00:00
new SpriteText { Text = "Frame limiter: TODO dropdown" },
new CheckBoxOption
{
LabelText = "Show FPS counter",
Bindable = config.GetBindable<bool>(OsuConfig.FpsCounter),
},
new CheckBoxOption
{
LabelText = "Reduce dropped frames",
Bindable = config.GetBindable<bool>(OsuConfig.ForceFrameFlush),
},
new CheckBoxOption
{
LabelText = "Detect performance issues",
Bindable = config.GetBindable<bool>(OsuConfig.DetectPerformanceIssues),
},
};
2016-11-03 02:49:26 +00:00
}
}
}