diff options
author | bunnei <bunneidev@gmail.com> | 2022-01-03 17:56:30 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-03 17:56:30 -0800 |
commit | c68a0d17fc30d9b91b8324b3899556e3ebfea8d5 (patch) | |
tree | 3ec6f215ab86e6a9baf181efc9839eaa8bf56cf4 /src/shader_recompiler/environment.h | |
parent | e7733544779f2706d108682dd027d44e7fa5ff4b (diff) | |
parent | f58ee3f15f7427a8b834286384931bcf821ed771 (diff) |
Merge pull request #7251 from FernandoS27/shader-dump
ShaderDecompiler: Add a debug option to dump the game's shaders.
Diffstat (limited to 'src/shader_recompiler/environment.h')
-rw-r--r-- | src/shader_recompiler/environment.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shader_recompiler/environment.h b/src/shader_recompiler/environment.h index b4df73e8af..db16429d46 100644 --- a/src/shader_recompiler/environment.h +++ b/src/shader_recompiler/environment.h @@ -31,6 +31,8 @@ public: [[nodiscard]] virtual std::array<u32, 3> WorkgroupSize() const = 0; + virtual void Dump(u64 hash) = 0; + [[nodiscard]] const ProgramHeader& SPH() const noexcept { return sph; } |