summaryrefslogtreecommitdiffstats
path: root/src/video_core/command_processor.cpp
diff options
context:
space:
mode:
authorTony Wasserka <neobrainx@gmail.com>2015-07-24 01:58:11 +0200
committerTony Wasserka <neobrainx@gmail.com>2015-07-24 01:58:11 +0200
commit1760eb5ca692b4ca289087eaae1e0975a545be3e (patch)
treed10fbb61342af95db208b300e1185f9503f1a79c /src/video_core/command_processor.cpp
parentMerge pull request #977 from yuriks/glenable-tex2d (diff)
parentQt/GPU Breakpoints: Added three more breakpoint types: (diff)
downloadyuzu-1760eb5ca692b4ca289087eaae1e0975a545be3e.tar
yuzu-1760eb5ca692b4ca289087eaae1e0975a545be3e.tar.gz
yuzu-1760eb5ca692b4ca289087eaae1e0975a545be3e.tar.bz2
yuzu-1760eb5ca692b4ca289087eaae1e0975a545be3e.tar.lz
yuzu-1760eb5ca692b4ca289087eaae1e0975a545be3e.tar.xz
yuzu-1760eb5ca692b4ca289087eaae1e0975a545be3e.tar.zst
yuzu-1760eb5ca692b4ca289087eaae1e0975a545be3e.zip
Diffstat (limited to 'src/video_core/command_processor.cpp')
-rw-r--r--src/video_core/command_processor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/command_processor.cpp b/src/video_core/command_processor.cpp
index 8b10d7340..92ba8754f 100644
--- a/src/video_core/command_processor.cpp
+++ b/src/video_core/command_processor.cpp
@@ -50,7 +50,7 @@ static inline void WritePicaReg(u32 id, u32 value, u32 mask) {
regs[id] = (old_value & ~mask) | (value & mask);
if (g_debug_context)
- g_debug_context->OnEvent(DebugContext::Event::CommandLoaded, reinterpret_cast<void*>(&id));
+ g_debug_context->OnEvent(DebugContext::Event::PicaCommandLoaded, reinterpret_cast<void*>(&id));
DebugUtils::OnPicaRegWrite(id, regs[id]);
@@ -428,7 +428,7 @@ static inline void WritePicaReg(u32 id, u32 value, u32 mask) {
VideoCore::g_renderer->hw_rasterizer->NotifyPicaRegisterChanged(id);
if (g_debug_context)
- g_debug_context->OnEvent(DebugContext::Event::CommandProcessed, reinterpret_cast<void*>(&id));
+ g_debug_context->OnEvent(DebugContext::Event::PicaCommandProcessed, reinterpret_cast<void*>(&id));
}
void ProcessCommandList(const u32* list, u32 size) {