summaryrefslogtreecommitdiff
path: root/src/video_core/debug_utils
diff options
context:
space:
mode:
authorGravatar Tony Wasserka2015-07-24 01:58:11 +0200
committerGravatar Tony Wasserka2015-07-24 01:58:11 +0200
commit1760eb5ca692b4ca289087eaae1e0975a545be3e (patch)
treed10fbb61342af95db208b300e1185f9503f1a79c /src/video_core/debug_utils
parentMerge pull request #977 from yuriks/glenable-tex2d (diff)
parentQt/GPU Breakpoints: Added three more breakpoint types: (diff)
downloadyuzu-1760eb5ca692b4ca289087eaae1e0975a545be3e.tar.gz
yuzu-1760eb5ca692b4ca289087eaae1e0975a545be3e.tar.xz
yuzu-1760eb5ca692b4ca289087eaae1e0975a545be3e.zip
Merge pull request #980 from Subv/more_breakpoints
Qt/GPU Breakpoints: Added three more breakpoint types.
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 };