summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/frontend/maxwell
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2021-10-31 17:46:46 +0100
committerFernando Sahmkow <fsahmkow27@gmail.com>2021-10-31 19:34:15 +0100
commitc50ad56bf59169bd0fc808ebecfb4a69376f10df (patch)
tree56b4c044f6116a092370438c89b96e1400ad363a /src/shader_recompiler/frontend/maxwell
parentMerge pull request #6702 from lat9nq/disable-screensaver (diff)
downloadyuzu-c50ad56bf59169bd0fc808ebecfb4a69376f10df.tar
yuzu-c50ad56bf59169bd0fc808ebecfb4a69376f10df.tar.gz
yuzu-c50ad56bf59169bd0fc808ebecfb4a69376f10df.tar.bz2
yuzu-c50ad56bf59169bd0fc808ebecfb4a69376f10df.tar.lz
yuzu-c50ad56bf59169bd0fc808ebecfb4a69376f10df.tar.xz
yuzu-c50ad56bf59169bd0fc808ebecfb4a69376f10df.tar.zst
yuzu-c50ad56bf59169bd0fc808ebecfb4a69376f10df.zip
Diffstat (limited to 'src/shader_recompiler/frontend/maxwell')
-rw-r--r--src/shader_recompiler/frontend/maxwell/translate_program.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/translate_program.cpp b/src/shader_recompiler/frontend/maxwell/translate_program.cpp
index 012d55357..2fc542f0e 100644
--- a/src/shader_recompiler/frontend/maxwell/translate_program.cpp
+++ b/src/shader_recompiler/frontend/maxwell/translate_program.cpp
@@ -27,9 +27,11 @@ IR::BlockList GenerateBlocks(const IR::AbstractSyntaxList& syntax_list) {
}
IR::BlockList blocks;
blocks.reserve(num_syntax_blocks);
+ u32 order_index{};
for (const auto& node : syntax_list) {
if (node.type == IR::AbstractSyntaxNode::Type::Block) {
blocks.push_back(node.data.block);
+ blocks.back()->SetOrder(order_index++);
}
}
return blocks;