mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-01-11 20:10:38 +00:00
Some checks failed
Canary CI / Release for linux-arm64 (push) Has been cancelled
Canary CI / Release for linux-x64 (push) Has been cancelled
Canary CI / Release for win-x64 (push) Has been cancelled
Canary CI / Release MacOS universal (push) Has been cancelled
Canary CI / Create GitLab Release (push) Has been cancelled
As per the remark XMLdoc on the type: Get rid of this converter if dotnet supports similar functionality out of the box.
13 lines
263 B
C#
13 lines
263 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Ryujinx.Common.Configuration
|
|
{
|
|
[JsonConverter(typeof(JsonStringEnumConverter<GraphicsDebugLevel>))]
|
|
public enum GraphicsDebugLevel
|
|
{
|
|
None,
|
|
Error,
|
|
Slowdowns,
|
|
All,
|
|
}
|
|
}
|