1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 13:59:40 +08:00
osu-lazer/osu.Game/Overlays/Settings/Sections/Graphics/RendererSettings.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
2.0 KiB
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 17:19:50 +08:00
2016-11-11 06:40:42 +08:00
using osu.Framework.Allocation;
2023-03-17 18:29:34 +08:00
using osu.Framework.Bindables;
using osu.Framework.Configuration;
2016-11-09 11:38:40 +08:00
using osu.Framework.Graphics;
using osu.Framework.Localisation;
2020-02-28 18:11:18 +08:00
using osu.Framework.Platform;
using osu.Game.Configuration;
2021-08-11 16:48:37 +08:00
using osu.Game.Localisation;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays.Settings.Sections.Graphics
{
public partial class RendererSettings : SettingsSubsection
{
2021-08-11 16:48:37 +08:00
protected override LocalisableString Header => GraphicsSettingsStrings.RendererHeader;
2018-04-13 17:19:50 +08:00
[BackgroundDependencyLoader]
private void load(FrameworkConfigManager config, OsuConfigManager osuConfig)
2016-11-09 11:38:40 +08:00
{
2016-11-11 06:40:42 +08:00
// NOTE: Compatability mode omitted
Children = new Drawable[]
2016-11-09 11:38:40 +08:00
{
2023-03-17 18:29:34 +08:00
new SettingsEnumDropdown<RendererType>
{
LabelText = GraphicsSettingsStrings.Renderer,
Current = config.GetBindable<RendererType>(FrameworkSetting.Renderer),
Keywords = new[] { @"compatibility", @"directx" },
},
2016-12-02 06:28:20 +08:00
// TODO: this needs to be a custom dropdown at some point
new SettingsEnumDropdown<FrameSync>
2016-12-02 06:28:20 +08:00
{
2021-08-11 16:48:37 +08:00
LabelText = GraphicsSettingsStrings.FrameLimiter,
Current = config.GetBindable<FrameSync>(FrameworkSetting.FrameSync),
Keywords = new[] { @"fps" },
2016-12-02 06:28:20 +08:00
},
2020-02-28 18:11:18 +08:00
new SettingsEnumDropdown<ExecutionMode>
{
2021-08-11 16:48:37 +08:00
LabelText = GraphicsSettingsStrings.ThreadingMode,
Current = config.GetBindable<ExecutionMode>(FrameworkSetting.ExecutionMode)
2020-02-28 18:11:18 +08:00
},
new SettingsCheckbox
{
2021-08-11 16:48:37 +08:00
LabelText = GraphicsSettingsStrings.ShowFPS,
Current = osuConfig.GetBindable<bool>(OsuSetting.ShowFpsDisplay)
},
2016-11-11 06:40:42 +08:00
};
}
}
}