From f2b9a9c2b0a3d7af3b56df9ae09db8a3b2d8506c Mon Sep 17 00:00:00 2001 From: emmauss Date: Thu, 6 Feb 2020 11:25:47 +0000 Subject: Render Profiler in GUI (#854) * move profiler output to gui * addressed commits, rebased * removed whitespaces --- Ryujinx.Profiler/ProfilerKeyboardHandler.cs | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 Ryujinx.Profiler/ProfilerKeyboardHandler.cs (limited to 'Ryujinx.Profiler/ProfilerKeyboardHandler.cs') diff --git a/Ryujinx.Profiler/ProfilerKeyboardHandler.cs b/Ryujinx.Profiler/ProfilerKeyboardHandler.cs deleted file mode 100644 index e6207e89..00000000 --- a/Ryujinx.Profiler/ProfilerKeyboardHandler.cs +++ /dev/null @@ -1,28 +0,0 @@ -using OpenTK.Input; - -namespace Ryujinx.Profiler -{ - public struct ProfilerButtons - { - public Key ToggleProfiler; - } - - public class ProfilerKeyboardHandler - { - public ProfilerButtons Buttons; - - private KeyboardState _prevKeyboard; - - public ProfilerKeyboardHandler(ProfilerButtons buttons) - { - Buttons = buttons; - } - - public bool TogglePressed(KeyboardState keyboard) => !keyboard[Buttons.ToggleProfiler] && _prevKeyboard[Buttons.ToggleProfiler]; - - public void SetPrevKeyboardState(KeyboardState keyboard) - { - _prevKeyboard = keyboard; - } - } -} -- cgit v1.2.3