diff options
author | Subv <subv2112@gmail.com> | 2015-07-23 01:20:54 +0200 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2015-07-23 18:47:34 +0200 |
commit | 6c0ea5f5e8b4945adee121dbca1c646a50d1e0b0 (patch) | |
tree | 5e8a1e33d8697550fc7a8eee76755be4bd65015a /src/video_core/debug_utils | |
parent | Merge pull request #968 from Subv/texture_filtering (diff) | |
download | yuzu-6c0ea5f5e8b4945adee121dbca1c646a50d1e0b0.tar yuzu-6c0ea5f5e8b4945adee121dbca1c646a50d1e0b0.tar.gz yuzu-6c0ea5f5e8b4945adee121dbca1c646a50d1e0b0.tar.bz2 yuzu-6c0ea5f5e8b4945adee121dbca1c646a50d1e0b0.tar.lz yuzu-6c0ea5f5e8b4945adee121dbca1c646a50d1e0b0.tar.xz yuzu-6c0ea5f5e8b4945adee121dbca1c646a50d1e0b0.tar.zst yuzu-6c0ea5f5e8b4945adee121dbca1c646a50d1e0b0.zip |
Diffstat (limited to 'src/video_core/debug_utils')
-rw-r--r-- | src/video_core/debug_utils/debug_utils.h | 7 |
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: enum class Event { FirstEvent = 0, - CommandLoaded = FirstEvent, - CommandProcessed, + PicaCommandLoaded = FirstEvent, + PicaCommandProcessed, IncomingPrimitiveBatch, FinishedPrimitiveBatch, VertexLoaded, + IncomingDisplayTransfer, + GSPCommandProcessed, + BufferSwapped, NumEvents }; |