diff options
| author | Dwayne Slater <ds84182@gmail.com> | 2016-03-02 22:16:38 -0500 |
|---|---|---|
| committer | Dwayne Slater <ds84182@gmail.com> | 2016-03-02 22:16:38 -0500 |
| commit | 6b775034dd8343c06369b64bf073d6a70f35f510 (patch) | |
| tree | f2a9099637bcb218ff0cc789f98151689f65c903 /src/video_core/debug_utils/debug_utils.cpp | |
| parent | ea0ca1721521c2b20ac8cc9b1d8eab08f8ec23a9 (diff) | |
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.cpp | 3 |
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; |
