summaryrefslogtreecommitdiff
path: root/src/video_core/debug_utils
diff options
context:
space:
mode:
authorGravatar Subv2015-07-22 18:20:54 -0500
committerGravatar Subv2015-07-23 11:47:34 -0500
commit6c0ea5f5e8b4945adee121dbca1c646a50d1e0b0 (patch)
tree5e8a1e33d8697550fc7a8eee76755be4bd65015a /src/video_core/debug_utils
parentMerge pull request #968 from Subv/texture_filtering (diff)
downloadyuzu-6c0ea5f5e8b4945adee121dbca1c646a50d1e0b0.tar.gz
yuzu-6c0ea5f5e8b4945adee121dbca1c646a50d1e0b0.tar.xz
yuzu-6c0ea5f5e8b4945adee121dbca1c646a50d1e0b0.zip
Qt/GPU Breakpoints: Added three more breakpoint types:
* IncomingDisplayTransfer: Triggered just before a display transfer is performed. * GSPCommandProcessed: Triggered right after a GSP command is processed. * BufferSwapped: Triggered when the frames flip
Diffstat (limited to 'src/video_core/debug_utils')
-rw-r--r--src/video_core/debug_utils/debug_utils.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/video_core/debug_utils/debug_utils.h b/src/video_core/debug_utils/debug_utils.h
index 2573292e2..3f109dcb7 100644
--- a/src/video_core/debug_utils/debug_utils.h
+++ b/src/video_core/debug_utils/debug_utils.h
@@ -25,11 +25,14 @@ public:
25 enum class Event { 25 enum class Event {
26 FirstEvent = 0, 26 FirstEvent = 0,
27 27
28 CommandLoaded = FirstEvent, 28 PicaCommandLoaded = FirstEvent,
29 CommandProcessed, 29 PicaCommandProcessed,
30 IncomingPrimitiveBatch, 30 IncomingPrimitiveBatch,
31 FinishedPrimitiveBatch, 31 FinishedPrimitiveBatch,
32 VertexLoaded, 32 VertexLoaded,
33 IncomingDisplayTransfer,
34 GSPCommandProcessed,
35 BufferSwapped,
33 36
34 NumEvents 37 NumEvents
35 }; 38 };