Files
Kenji-NX/src/Ryujinx.Common/Configuration/TranslationLayer.cs
T
KeatonTheBot 6dc85e7f40 Add KosmicKrisp translation layer for macOS 26+
- Mesa 26.0 introduced KosmicKrisp, a Vulkan-on-Metal translation layer and the eventual successor to MoltenVK
2026-09-13 21:38:20 -05:00

12 lines
238 B
C#

using System.Text.Json.Serialization;
namespace Ryujinx.Common.Configuration
{
[JsonConverter(typeof(JsonStringEnumConverter<TranslationLayer>))]
public enum TranslationLayer
{
MoltenVK,
KosmicKrisp,
}
}