diff options
author | bunnei <bunneidev@gmail.com> | 2016-11-19 22:21:11 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-19 22:21:11 -0500 |
commit | 2de470c9b26f709859b2d842e60a2303784b3cb0 (patch) | |
tree | 1f25c2dfc1ecb85244fcb7260cbd36b2a5d33fdd /src | |
parent | f1798c1db6dd580d695c97e020d5a0b5d898db40 (diff) | |
parent | 050e9be15bfff915d1e8636551c254dab59bd7a3 (diff) |
Merge pull request #2195 from Subv/factor_check
GPU/CiTrace: Avoid calling GetTextures() when not necessary.
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/command_processor.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/video_core/command_processor.cpp b/src/video_core/command_processor.cpp index fda91e29c..45585fe30 100644 --- a/src/video_core/command_processor.cpp +++ b/src/video_core/command_processor.cpp @@ -215,18 +215,17 @@ static void WritePicaReg(u32 id, u32 value, u32 mask) { PrimitiveAssembler<Shader::OutputVertex>& primitive_assembler = g_state.primitive_assembler; - if (g_debug_context) { + if (g_debug_context && g_debug_context->recorder) { for (int i = 0; i < 3; ++i) { const auto texture = regs.GetTextures()[i]; if (!texture.enabled) continue; u8* texture_data = Memory::GetPhysicalPointer(texture.config.GetPhysicalAddress()); - if (g_debug_context && Pica::g_debug_context->recorder) - g_debug_context->recorder->MemoryAccessed( - texture_data, Pica::Regs::NibblesPerPixel(texture.format) * - texture.config.width / 2 * texture.config.height, - texture.config.GetPhysicalAddress()); + g_debug_context->recorder->MemoryAccessed( + texture_data, Pica::Regs::NibblesPerPixel(texture.format) * + texture.config.width / 2 * texture.config.height, + texture.config.GetPhysicalAddress()); } } |