aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Common/Configuration/GraphicsDebugLevel.cs
diff options
context:
space:
mode:
authormageven <62494521+mageven@users.noreply.github.com>2020-08-02 20:11:24 +0530
committerGitHub <noreply@github.com>2020-08-02 16:41:24 +0200
commitf0c91d9efb7eff0b8bbe8fc8d4901af5a9d59005 (patch)
treedadfcd28cc2a0e26cd4a776bf93074db17488de4 /Ryujinx.Common/Configuration/GraphicsDebugLevel.cs
parent1457ab54560a9e76a8ade68879d710f7cc533294 (diff)
Facilitate OpenGL debug logging via GUI (#1373)
* Allow printing GL Debug logs with GUI options Improve GL Debugger Make the new option persistent Address gdkchan's comments - Rename enum to GraphicsDebugLevel - Move Debugger Init to Renderer Init - Fix formatting * nit: newlines
Diffstat (limited to 'Ryujinx.Common/Configuration/GraphicsDebugLevel.cs')
-rw-r--r--Ryujinx.Common/Configuration/GraphicsDebugLevel.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/Ryujinx.Common/Configuration/GraphicsDebugLevel.cs b/Ryujinx.Common/Configuration/GraphicsDebugLevel.cs
new file mode 100644
index 00000000..1bef4a7e
--- /dev/null
+++ b/Ryujinx.Common/Configuration/GraphicsDebugLevel.cs
@@ -0,0 +1,10 @@
+namespace Ryujinx.Common.Configuration
+{
+ public enum GraphicsDebugLevel
+ {
+ None,
+ Error,
+ Performance,
+ All
+ }
+}