diff options
author | Dwayne Slater <ds84182@gmail.com> | 2016-03-03 04:16:38 +0100 |
---|---|---|
committer | Dwayne Slater <ds84182@gmail.com> | 2016-03-03 04:16:38 +0100 |
commit | 6b775034dd8343c06369b64bf073d6a70f35f510 (patch) | |
tree | f2a9099637bcb218ff0cc789f98151689f65c903 /src/video_core/debug_utils | |
parent | Merge pull request #1434 from Kloen/legend (diff) | |
download | yuzu-6b775034dd8343c06369b64bf073d6a70f35f510.tar yuzu-6b775034dd8343c06369b64bf073d6a70f35f510.tar.gz yuzu-6b775034dd8343c06369b64bf073d6a70f35f510.tar.bz2 yuzu-6b775034dd8343c06369b64bf073d6a70f35f510.tar.lz yuzu-6b775034dd8343c06369b64bf073d6a70f35f510.tar.xz yuzu-6b775034dd8343c06369b64bf073d6a70f35f510.tar.zst yuzu-6b775034dd8343c06369b64bf073d6a70f35f510.zip |
Diffstat (limited to 'src/video_core/debug_utils')
-rw-r--r-- | src/video_core/debug_utils/debug_utils.cpp | 3 | ||||
-rw-r--r-- | src/video_core/debug_utils/debug_utils.h | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/video_core/debug_utils/debug_utils.cpp b/src/video_core/debug_utils/debug_utils.cpp index 6e6fd7335..6e21caa78 100644 --- a/src/video_core/debug_utils/debug_utils.cpp +++ b/src/video_core/debug_utils/debug_utils.cpp @@ -28,6 +28,7 @@ #include "core/settings.h" #include "video_core/pica.h" +#include "video_core/pica_state.h" #include "video_core/renderer_base.h" #include "video_core/utils.h" #include "video_core/video_core.h" @@ -113,7 +114,7 @@ void GeometryDumper::Dump() { } -void DumpShader(const std::string& filename, const Regs::ShaderConfig& config, const State::ShaderSetup& setup, const Regs::VSOutputAttributes* output_attributes) +void DumpShader(const std::string& filename, const Regs::ShaderConfig& config, const Shader::ShaderSetup& setup, const Regs::VSOutputAttributes* output_attributes) { struct StuffToWrite { u8* pointer; diff --git a/src/video_core/debug_utils/debug_utils.h b/src/video_core/debug_utils/debug_utils.h index 85762f5b4..795160a32 100644 --- a/src/video_core/debug_utils/debug_utils.h +++ b/src/video_core/debug_utils/debug_utils.h @@ -17,6 +17,7 @@ #include "core/tracer/recorder.h" #include "video_core/pica.h" +#include "video_core/shader/shader.h" namespace Pica { @@ -182,7 +183,7 @@ private: }; void DumpShader(const std::string& filename, const Regs::ShaderConfig& config, - const State::ShaderSetup& setup, const Regs::VSOutputAttributes* output_attributes); + const Shader::ShaderSetup& setup, const Regs::VSOutputAttributes* output_attributes); // Utility class to log Pica commands. |