diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-03-13 21:26:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-13 21:26:24 +0100 |
commit | 666d431ad8ee4e36f1b7f48d13f3fa63ba3675f2 (patch) | |
tree | d0f968d06b2bbc6e378a5a0632cd2d6322fe4e6d /src/video_core/shader/control_flow.h | |
parent | Merge pull request #3491 from ReinUsesLisp/polygon-modes (diff) | |
parent | Merge branch 'master' into shader-purge (diff) | |
download | yuzu-666d431ad8ee4e36f1b7f48d13f3fa63ba3675f2.tar yuzu-666d431ad8ee4e36f1b7f48d13f3fa63ba3675f2.tar.gz yuzu-666d431ad8ee4e36f1b7f48d13f3fa63ba3675f2.tar.bz2 yuzu-666d431ad8ee4e36f1b7f48d13f3fa63ba3675f2.tar.lz yuzu-666d431ad8ee4e36f1b7f48d13f3fa63ba3675f2.tar.xz yuzu-666d431ad8ee4e36f1b7f48d13f3fa63ba3675f2.tar.zst yuzu-666d431ad8ee4e36f1b7f48d13f3fa63ba3675f2.zip |
Diffstat (limited to 'src/video_core/shader/control_flow.h')
-rw-r--r-- | src/video_core/shader/control_flow.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/shader/control_flow.h b/src/video_core/shader/control_flow.h index 5304998b9..62a3510d8 100644 --- a/src/video_core/shader/control_flow.h +++ b/src/video_core/shader/control_flow.h @@ -12,6 +12,7 @@ #include "video_core/engines/shader_bytecode.h" #include "video_core/shader/ast.h" #include "video_core/shader/compiler_settings.h" +#include "video_core/shader/registry.h" #include "video_core/shader/shader_ir.h" namespace VideoCommon::Shader { @@ -111,6 +112,6 @@ struct ShaderCharacteristics { std::unique_ptr<ShaderCharacteristics> ScanFlow(const ProgramCode& program_code, u32 start_address, const CompilerSettings& settings, - ConstBufferLocker& locker); + Registry& registry); } // namespace VideoCommon::Shader |