From f0c91d9efb7eff0b8bbe8fc8d4901af5a9d59005 Mon Sep 17 00:00:00 2001 From: mageven <62494521+mageven@users.noreply.github.com> Date: Sun, 2 Aug 2020 20:11:24 +0530 Subject: 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 --- Ryujinx.Common/Configuration/GraphicsDebugLevel.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Ryujinx.Common/Configuration/GraphicsDebugLevel.cs (limited to 'Ryujinx.Common/Configuration/GraphicsDebugLevel.cs') 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 + } +} -- cgit v1.2.3