mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-03-08 07:31:08 +00:00
As per the remark XMLdoc on the type: Get rid of this converter if dotnet supports similar functionality out of the box.
16 lines
292 B
C#
16 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,
|
|
}
|
|
}
|