summaryrefslogtreecommitdiff
path: root/src/video_core/debug_utils
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2017-01-28 13:03:13 -0800
committerGravatar Yuri Kunde Schlesner2017-02-04 13:59:11 -0800
commitf7c7f422c6995a31c1a16c0865bbe13bb38469a3 (patch)
tree6dca1dfe528cc115dd1be8d6dd7a97f491140540 /src/video_core/debug_utils
parentVideoCore: Split geometry pipeline regs from Regs struct (diff)
downloadyuzu-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.cpp2
-rw-r--r--src/video_core/debug_utils/debug_utils.h2
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
89namespace DebugUtils { 89namespace DebugUtils {
90 90
91void DumpShader(const std::string& filename, const Regs::ShaderConfig& config, 91void 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
185void DumpShader(const std::string& filename, const Regs::ShaderConfig& config, 185void 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