mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-24 05:22:07 +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.
15 lines
292 B
C#
15 lines
292 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Ryujinx.Common.Configuration
|
|
{
|
|
[JsonConverter(typeof(JsonStringEnumConverter<AntiAliasing>))]
|
|
public enum AntiAliasing
|
|
{
|
|
None,
|
|
Fxaa,
|
|
SmaaLow,
|
|
SmaaMedium,
|
|
SmaaHigh,
|
|
SmaaUltra,
|
|
}
|
|
}
|