mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-23 02:51:13 +02:00
- Mesa 26.0 introduced KosmicKrisp, a Vulkan-on-Metal translation layer and the eventual successor to MoltenVK
12 lines
238 B
C#
12 lines
238 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Ryujinx.Common.Configuration
|
|
{
|
|
[JsonConverter(typeof(JsonStringEnumConverter<TranslationLayer>))]
|
|
public enum TranslationLayer
|
|
{
|
|
MoltenVK,
|
|
KosmicKrisp,
|
|
}
|
|
}
|