diff options
| author | 2014-05-18 17:52:22 +0200 | |
|---|---|---|
| committer | 2014-06-12 06:10:52 -0400 | |
| commit | 6893732348c3689b094c2e9749f8eb9e877028b8 (patch) | |
| tree | 915e207f2607b85d5a65c9cf08d3cdc360b0adbe /src/video_core | |
| parent | GPU debugger: Add functionality to inspect command lists. (diff) | |
| download | yuzu-6893732348c3689b094c2e9749f8eb9e877028b8.tar.gz yuzu-6893732348c3689b094c2e9749f8eb9e877028b8.tar.xz yuzu-6893732348c3689b094c2e9749f8eb9e877028b8.zip | |
citra-qt: Add command list view.
Diffstat (limited to 'src/video_core')
| -rw-r--r-- | src/video_core/gpu_debugger.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/gpu_debugger.h b/src/video_core/gpu_debugger.h index 4dafd3146..7ad595493 100644 --- a/src/video_core/gpu_debugger.h +++ b/src/video_core/gpu_debugger.h | |||
| @@ -57,7 +57,7 @@ public: | |||
| 57 | * @param is_new true if the command list was called for the first time | 57 | * @param is_new true if the command list was called for the first time |
| 58 | * @todo figure out how to make sure called functions don't keep references around beyond their life time | 58 | * @todo figure out how to make sure called functions don't keep references around beyond their life time |
| 59 | */ | 59 | */ |
| 60 | virtual void CommandListCalled(const PicaCommandList& lst, bool is_new) | 60 | virtual void OnCommandListCalled(const PicaCommandList& lst, bool is_new) |
| 61 | { | 61 | { |
| 62 | ERROR_LOG(GSP, "Command list called: %d", (int)is_new); | 62 | ERROR_LOG(GSP, "Command list called: %d", (int)is_new); |
| 63 | } | 63 | } |
| @@ -106,7 +106,7 @@ public: | |||
| 106 | command_lists.push_back(obj); | 106 | command_lists.push_back(obj); |
| 107 | 107 | ||
| 108 | ForEachObserver([&](DebuggerObserver* observer) { | 108 | ForEachObserver([&](DebuggerObserver* observer) { |
| 109 | observer->CommandListCalled(obj.second, is_new); | 109 | observer->OnCommandListCalled(obj.second, is_new); |
| 110 | } ); | 110 | } ); |
| 111 | } | 111 | } |
| 112 | 112 | ||