diff options
author | Tony Wasserka <NeoBrainX@gmail.com> | 2015-05-21 02:12:59 +0200 |
---|---|---|
committer | Tony Wasserka <NeoBrainX@gmail.com> | 2015-07-13 22:27:21 +0200 |
commit | 01a526e1c449f86bbb626dd83f3f6cf94c2d86d4 (patch) | |
tree | a641344e90c78e537ed46c306b76d1adb82a863f /src/citra_qt/debugger/graphics_tracing.h | |
parent | Add CiTrace recording support. (diff) | |
download | yuzu-01a526e1c449f86bbb626dd83f3f6cf94c2d86d4.tar yuzu-01a526e1c449f86bbb626dd83f3f6cf94c2d86d4.tar.gz yuzu-01a526e1c449f86bbb626dd83f3f6cf94c2d86d4.tar.bz2 yuzu-01a526e1c449f86bbb626dd83f3f6cf94c2d86d4.tar.lz yuzu-01a526e1c449f86bbb626dd83f3f6cf94c2d86d4.tar.xz yuzu-01a526e1c449f86bbb626dd83f3f6cf94c2d86d4.tar.zst yuzu-01a526e1c449f86bbb626dd83f3f6cf94c2d86d4.zip |
Diffstat (limited to 'src/citra_qt/debugger/graphics_tracing.h')
-rw-r--r-- | src/citra_qt/debugger/graphics_tracing.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/citra_qt/debugger/graphics_tracing.h b/src/citra_qt/debugger/graphics_tracing.h index 397a7173b..2a0e4819b 100644 --- a/src/citra_qt/debugger/graphics_tracing.h +++ b/src/citra_qt/debugger/graphics_tracing.h @@ -6,6 +6,8 @@ #include "graphics_breakpoint_observer.h" +class EmuThread; + class GraphicsTracingWidget : public BreakPointObserverDock { Q_OBJECT @@ -20,6 +22,9 @@ private slots: void OnBreakPointHit(Pica::DebugContext::Event event, void* data) override; void OnResumed() override; + void OnEmulationStarting(EmuThread* emu_thread); + void OnEmulationStopping(); + signals: void SetStartTracingButtonEnabled(bool enable); void SetStopTracingButtonEnabled(bool enable); |