Hide vulkan renderer option for now

We'll bring it back when it's more stable.
This commit is contained in:
Dean Herbert
2023-03-27 02:00:09 +09:00
parent 6751f78304
commit 898717231b

View File

@ -36,7 +36,7 @@ namespace osu.Game.Overlays.Settings.Sections.Graphics
{ {
LabelText = GraphicsSettingsStrings.Renderer, LabelText = GraphicsSettingsStrings.Renderer,
Current = renderer, Current = renderer,
Items = host.GetPreferredRenderersForCurrentPlatform().OrderBy(t => t), Items = host.GetPreferredRenderersForCurrentPlatform().OrderBy(t => t).Where(t => t != RendererType.Vulkan),
Keywords = new[] { @"compatibility", @"directx" }, Keywords = new[] { @"compatibility", @"directx" },
}, },
// TODO: this needs to be a custom dropdown at some point // TODO: this needs to be a custom dropdown at some point