aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/debug_utils/debug_utils.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2016-03-03 10:51:15 -0500
committerbunnei <bunneidev@gmail.com>2016-03-03 10:51:15 -0500
commitc9009d39d4e023ea9f45565fe241cc63bc765803 (patch)
tree24151beb25a6a53a9f2646f93dedbe834e7f04f5 /src/video_core/debug_utils/debug_utils.cpp
parent699b2a6571849bddda4fee3eb31f2f7b7e83a882 (diff)
parent6b775034dd8343c06369b64bf073d6a70f35f510 (diff)
Merge pull request #1394 from ds84182/immediate-mode-vtx
Add immediate mode vertex submission
Diffstat (limited to 'src/video_core/debug_utils/debug_utils.cpp')
-rw-r--r--src/video_core/debug_utils/debug_utils.cpp3
1 files changed, 2 insertions, 1 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;