diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-01-28 22:27:24 +0100 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-02-04 22:59:12 +0100 |
commit | 5759d94b5c5b11af426668d046d206839bc5e802 (patch) | |
tree | 971681341d1134533fd485e20cfe4863aa34ce27 /src/video_core/debug_utils | |
parent | VideoCore: Split shader regs from Regs struct (diff) | |
download | yuzu-5759d94b5c5b11af426668d046d206839bc5e802.tar yuzu-5759d94b5c5b11af426668d046d206839bc5e802.tar.gz yuzu-5759d94b5c5b11af426668d046d206839bc5e802.tar.bz2 yuzu-5759d94b5c5b11af426668d046d206839bc5e802.tar.lz yuzu-5759d94b5c5b11af426668d046d206839bc5e802.tar.xz yuzu-5759d94b5c5b11af426668d046d206839bc5e802.tar.zst yuzu-5759d94b5c5b11af426668d046d206839bc5e802.zip |
Diffstat (limited to 'src/video_core/debug_utils')
-rw-r--r-- | src/video_core/debug_utils/debug_utils.cpp | 2 | ||||
-rw-r--r-- | src/video_core/debug_utils/debug_utils.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/debug_utils/debug_utils.cpp b/src/video_core/debug_utils/debug_utils.cpp index ec8a9ee4a..e164e83a1 100644 --- a/src/video_core/debug_utils/debug_utils.cpp +++ b/src/video_core/debug_utils/debug_utils.cpp @@ -29,10 +29,10 @@ #include "common/math_util.h" #include "common/vector_math.h" #include "video_core/debug_utils/debug_utils.h" -#include "video_core/pica.h" #include "video_core/pica_state.h" #include "video_core/pica_types.h" #include "video_core/rasterizer_interface.h" +#include "video_core/regs.h" #include "video_core/renderer_base.h" #include "video_core/shader/shader.h" #include "video_core/texture/texture_decode.h" diff --git a/src/video_core/debug_utils/debug_utils.h b/src/video_core/debug_utils/debug_utils.h index 44d5af462..fd94bdbb8 100644 --- a/src/video_core/debug_utils/debug_utils.h +++ b/src/video_core/debug_utils/debug_utils.h @@ -17,7 +17,7 @@ #include <vector> #include "common/common_types.h" #include "common/vector_math.h" -#include "video_core/pica.h" +#include "video_core/regs.h" namespace CiTrace { class Recorder; |