diff options
| author | 2017-01-28 13:03:13 -0800 | |
|---|---|---|
| committer | 2017-02-04 13:59:11 -0800 | |
| commit | f7c7f422c6995a31c1a16c0865bbe13bb38469a3 (patch) | |
| tree | 6dca1dfe528cc115dd1be8d6dd7a97f491140540 /src/video_core/debug_utils | |
| parent | VideoCore: Split geometry pipeline regs from Regs struct (diff) | |
| download | yuzu-f7c7f422c6995a31c1a16c0865bbe13bb38469a3.tar.gz yuzu-f7c7f422c6995a31c1a16c0865bbe13bb38469a3.tar.xz yuzu-f7c7f422c6995a31c1a16c0865bbe13bb38469a3.zip | |
VideoCore: Split shader regs from Regs struct
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 81cd35cd9..ec8a9ee4a 100644 --- a/src/video_core/debug_utils/debug_utils.cpp +++ b/src/video_core/debug_utils/debug_utils.cpp | |||
| @@ -88,7 +88,7 @@ std::shared_ptr<DebugContext> g_debug_context; // TODO: Get rid of this global | |||
| 88 | 88 | ||
| 89 | namespace DebugUtils { | 89 | namespace DebugUtils { |
| 90 | 90 | ||
| 91 | void DumpShader(const std::string& filename, const Regs::ShaderConfig& config, | 91 | void DumpShader(const std::string& filename, const ShaderRegs& config, |
| 92 | const Shader::ShaderSetup& setup, | 92 | const Shader::ShaderSetup& setup, |
| 93 | const RasterizerRegs::VSOutputAttributes* output_attributes) { | 93 | const RasterizerRegs::VSOutputAttributes* output_attributes) { |
| 94 | struct StuffToWrite { | 94 | struct StuffToWrite { |
diff --git a/src/video_core/debug_utils/debug_utils.h b/src/video_core/debug_utils/debug_utils.h index e58b76d41..44d5af462 100644 --- a/src/video_core/debug_utils/debug_utils.h +++ b/src/video_core/debug_utils/debug_utils.h | |||
| @@ -182,7 +182,7 @@ namespace DebugUtils { | |||
| 182 | #define PICA_DUMP_TEXTURES 0 | 182 | #define PICA_DUMP_TEXTURES 0 |
| 183 | #define PICA_LOG_TEV 0 | 183 | #define PICA_LOG_TEV 0 |
| 184 | 184 | ||
| 185 | void DumpShader(const std::string& filename, const Regs::ShaderConfig& config, | 185 | void DumpShader(const std::string& filename, const ShaderRegs& config, |
| 186 | const Shader::ShaderSetup& setup, | 186 | const Shader::ShaderSetup& setup, |
| 187 | const RasterizerRegs::VSOutputAttributes* output_attributes); | 187 | const RasterizerRegs::VSOutputAttributes* output_attributes); |
| 188 | 188 | ||