aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/debug_utils/debug_utils.cpp
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2017-01-28 13:03:13 -0800
committerYuri Kunde Schlesner <yuriks@yuriks.net>2017-02-04 13:59:11 -0800
commitf7c7f422c6995a31c1a16c0865bbe13bb38469a3 (patch)
tree6dca1dfe528cc115dd1be8d6dd7a97f491140540 /src/video_core/debug_utils/debug_utils.cpp
parent8fca90b5d56892758a98a0ece15b5845009893e3 (diff)
VideoCore: Split shader regs from Regs struct
Diffstat (limited to 'src/video_core/debug_utils/debug_utils.cpp')
-rw-r--r--src/video_core/debug_utils/debug_utils.cpp2
1 files changed, 1 insertions, 1 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
namespace DebugUtils {
-void DumpShader(const std::string& filename, const Regs::ShaderConfig& config,
+void DumpShader(const std::string& filename, const ShaderRegs& config,
const Shader::ShaderSetup& setup,
const RasterizerRegs::VSOutputAttributes* output_attributes) {
struct StuffToWrite {