diff options
author | Lioncash <mathew1800@gmail.com> | 2020-04-17 04:43:33 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-04-17 05:43:34 +0200 |
commit | e2d8be1ca2cee27eb17964dd99c71dfd12431506 (patch) | |
tree | a1b92b6e3979373c1fb034e012fb1e9051ecf3db /src/video_core/shader | |
parent | CMakeLists: Enable -Wmissing-declarations on Linux builds (diff) | |
download | yuzu-e2d8be1ca2cee27eb17964dd99c71dfd12431506.tar yuzu-e2d8be1ca2cee27eb17964dd99c71dfd12431506.tar.gz yuzu-e2d8be1ca2cee27eb17964dd99c71dfd12431506.tar.bz2 yuzu-e2d8be1ca2cee27eb17964dd99c71dfd12431506.tar.lz yuzu-e2d8be1ca2cee27eb17964dd99c71dfd12431506.tar.xz yuzu-e2d8be1ca2cee27eb17964dd99c71dfd12431506.tar.zst yuzu-e2d8be1ca2cee27eb17964dd99c71dfd12431506.zip |
Diffstat (limited to 'src/video_core/shader')
-rw-r--r-- | src/video_core/shader/control_flow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/shader/control_flow.cpp b/src/video_core/shader/control_flow.cpp index 6d313963a..e00a3fb70 100644 --- a/src/video_core/shader/control_flow.cpp +++ b/src/video_core/shader/control_flow.cpp @@ -587,8 +587,6 @@ bool TryQuery(CFGRebuildState& state) { return true; } -} // Anonymous namespace - void InsertBranch(ASTManager& mm, const BlockBranchInfo& branch_info) { const auto get_expr = ([&](const Condition& cond) -> Expr { Expr result{}; @@ -655,6 +653,8 @@ void DecompileShader(CFGRebuildState& state) { state.manager->Decompile(); } +} // Anonymous namespace + std::unique_ptr<ShaderCharacteristics> ScanFlow(const ProgramCode& program_code, u32 start_address, const CompilerSettings& settings, Registry& registry) { |