aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Common/Configuration/GraphicsDebugLevel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Common/Configuration/GraphicsDebugLevel.cs')
-rw-r--r--src/Ryujinx.Common/Configuration/GraphicsDebugLevel.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Ryujinx.Common/Configuration/GraphicsDebugLevel.cs b/src/Ryujinx.Common/Configuration/GraphicsDebugLevel.cs
new file mode 100644
index 00000000..ad12302a
--- /dev/null
+++ b/src/Ryujinx.Common/Configuration/GraphicsDebugLevel.cs
@@ -0,0 +1,14 @@
+using Ryujinx.Common.Utilities;
+using System.Text.Json.Serialization;
+
+namespace Ryujinx.Common.Configuration
+{
+ [JsonConverter(typeof(TypedStringEnumConverter<GraphicsDebugLevel>))]
+ public enum GraphicsDebugLevel
+ {
+ None,
+ Error,
+ Slowdowns,
+ All
+ }
+}