diff options
| author | Tony Wasserka <NeoBrainX@gmail.com> | 2015-07-12 01:57:59 +0200 |
|---|---|---|
| committer | Tony Wasserka <NeoBrainX@gmail.com> | 2015-08-16 14:12:11 +0200 |
| commit | 33ba604fd903d9511a414a54b91ebe818df338ef (patch) | |
| tree | 578ee82515c8e819e6468af4ef5552ee028e472b /src/video_core/debug_utils/debug_utils.h | |
| parent | 2e3601f4156e73f22fa30d6b6cb42831ec1f713e (diff) | |
Introduce a shader tracer to allow inspection of input/output values for each processed instruction.
Diffstat (limited to 'src/video_core/debug_utils/debug_utils.h')
| -rw-r--r-- | src/video_core/debug_utils/debug_utils.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/debug_utils/debug_utils.h b/src/video_core/debug_utils/debug_utils.h index 1450e5bf3..0b30d7ffa 100644 --- a/src/video_core/debug_utils/debug_utils.h +++ b/src/video_core/debug_utils/debug_utils.h @@ -181,7 +181,8 @@ private: std::vector<Face> faces; }; -void DumpShader(const Regs::ShaderConfig& config, const State::ShaderSetup& setup, const Regs::VSOutputAttributes* output_attributes); +void DumpShader(const std::string& filename, const Regs::ShaderConfig& config, + const State::ShaderSetup& setup, const Regs::VSOutputAttributes* output_attributes); // Utility class to log Pica commands. |
