diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-08-05 18:58:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-05 18:58:39 +0200 |
commit | 4533769f7f99abb8595fd0a78e714edbf9af2e57 (patch) | |
tree | 18c7814ec81d70be275c2a79200bc909c793a097 /src/shader_recompiler/environment.h | |
parent | Merge pull request #11210 from german77/settings (diff) | |
parent | Fix shader dumps with nvdisasm (diff) | |
download | yuzu-4533769f7f99abb8595fd0a78e714edbf9af2e57.tar yuzu-4533769f7f99abb8595fd0a78e714edbf9af2e57.tar.gz yuzu-4533769f7f99abb8595fd0a78e714edbf9af2e57.tar.bz2 yuzu-4533769f7f99abb8595fd0a78e714edbf9af2e57.tar.lz yuzu-4533769f7f99abb8595fd0a78e714edbf9af2e57.tar.xz yuzu-4533769f7f99abb8595fd0a78e714edbf9af2e57.tar.zst yuzu-4533769f7f99abb8595fd0a78e714edbf9af2e57.zip |
Diffstat (limited to 'src/shader_recompiler/environment.h')
-rw-r--r-- | src/shader_recompiler/environment.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/environment.h b/src/shader_recompiler/environment.h index 26e8307c1..15285ab0a 100644 --- a/src/shader_recompiler/environment.h +++ b/src/shader_recompiler/environment.h @@ -39,7 +39,7 @@ public: [[nodiscard]] virtual std::optional<ReplaceConstant> GetReplaceConstBuffer(u32 bank, u32 offset) = 0; - virtual void Dump(u64 hash) = 0; + virtual void Dump(u64 pipeline_hash, u64 shader_hash) = 0; [[nodiscard]] const ProgramHeader& SPH() const noexcept { return sph; |