mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2026-02-10 21:17:18 -05:00
15 lines
289 B
C#
15 lines
289 B
C#
using Ryujinx.Common.Utilities;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Ryujinx.Common.Configuration
|
|
{
|
|
[JsonConverter(typeof(TypedStringEnumConverter<GraphicsBackend>))]
|
|
public enum GraphicsBackend
|
|
{
|
|
Auto,
|
|
Vulkan,
|
|
OpenGl,
|
|
Metal
|
|
}
|
|
}
|