summaryrefslogtreecommitdiffstats
path: root/src/video_core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-10-18 01:54:17 +0200
committerLioncash <mathew1800@gmail.com>2019-10-18 02:26:10 +0200
commit081530686c37afd668b389103a97e573399a83a1 (patch)
tree87ea6d0c95e360cb9f36255146acae883be5a3ed /src/video_core
parentMerge pull request #2980 from lioncash/warn (diff)
downloadyuzu-081530686c37afd668b389103a97e573399a83a1.tar
yuzu-081530686c37afd668b389103a97e573399a83a1.tar.gz
yuzu-081530686c37afd668b389103a97e573399a83a1.tar.bz2
yuzu-081530686c37afd668b389103a97e573399a83a1.tar.lz
yuzu-081530686c37afd668b389103a97e573399a83a1.tar.xz
yuzu-081530686c37afd668b389103a97e573399a83a1.tar.zst
yuzu-081530686c37afd668b389103a97e573399a83a1.zip
Diffstat (limited to 'src/video_core')
-rw-r--r--src/video_core/shader/ast.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/video_core/shader/ast.cpp b/src/video_core/shader/ast.cpp
index 436d45f4b..0be048044 100644
--- a/src/video_core/shader/ast.cpp
+++ b/src/video_core/shader/ast.cpp
@@ -4,6 +4,8 @@
#include <string>
+#include <fmt/format.h>
+
#include "common/assert.h"
#include "common/common_types.h"
#include "video_core/shader/ast.h"
@@ -249,7 +251,7 @@ public:
void operator()(const ASTIfThen& ast) {
ExprPrinter expr_parser{};
std::visit(expr_parser, *ast.condition);
- inner += Ident() + "if (" + expr_parser.GetResult() + ") {\n";
+ inner += fmt::format("{}if ({}) {{\n", Ident(), expr_parser.GetResult());
scope++;
ASTNode current = ast.nodes.GetFirst();
while (current) {
@@ -257,7 +259,7 @@ public:
current = current->GetNext();
}
scope--;
- inner += Ident() + "}\n";
+ inner += fmt::format("{}}}\n", Ident());
}
void operator()(const ASTIfElse& ast) {
@@ -273,8 +275,7 @@ public:
}
void operator()(const ASTBlockEncoded& ast) {
- inner += Ident() + "Block(" + std::to_string(ast.start) + ", " + std::to_string(ast.end) +
- ");\n";
+ inner += fmt::format("{}Block({}, {});\n", Ident(), ast.start, ast.end);
}
void operator()(const ASTBlockDecoded& ast) {
@@ -284,25 +285,24 @@ public:
void operator()(const ASTVarSet& ast) {
ExprPrinter expr_parser{};
std::visit(expr_parser, *ast.condition);
- inner +=
- Ident() + "V" + std::to_string(ast.index) + " := " + expr_parser.GetResult() + ";\n";
+ inner += fmt::format("{}V{} := {};\n", Ident(), ast.index, expr_parser.GetResult());
}
void operator()(const ASTLabel& ast) {
- inner += "Label_" + std::to_string(ast.index) + ":\n";
+ inner += fmt::format("Label_{}:\n", ast.index);
}
void operator()(const ASTGoto& ast) {
ExprPrinter expr_parser{};
std::visit(expr_parser, *ast.condition);
- inner += Ident() + "(" + expr_parser.GetResult() + ") -> goto Label_" +
- std::to_string(ast.label) + ";\n";
+ inner +=
+ fmt::format("{}({}) -> goto Label_{};\n", Ident(), expr_parser.GetResult(), ast.label);
}
void operator()(const ASTDoWhile& ast) {
ExprPrinter expr_parser{};
std::visit(expr_parser, *ast.condition);
- inner += Ident() + "do {\n";
+ inner += fmt::format("{}do {{\n", Ident());
scope++;
ASTNode current = ast.nodes.GetFirst();
while (current) {
@@ -310,20 +310,20 @@ public:
current = current->GetNext();
}
scope--;
- inner += Ident() + "} while (" + expr_parser.GetResult() + ");\n";
+ inner += fmt::format("{}}} while ({});\n", Ident(), expr_parser.GetResult());
}
void operator()(const ASTReturn& ast) {
ExprPrinter expr_parser{};
std::visit(expr_parser, *ast.condition);
- inner += Ident() + "(" + expr_parser.GetResult() + ") -> " +
- (ast.kills ? "discard" : "exit") + ";\n";
+ inner += fmt::format("{}({}) -> {};\n", Ident(), expr_parser.GetResult(),
+ ast.kills ? "discard" : "exit");
}
void operator()(const ASTBreak& ast) {
ExprPrinter expr_parser{};
std::visit(expr_parser, *ast.condition);
- inner += Ident() + "(" + expr_parser.GetResult() + ") -> break;\n";
+ inner += fmt::format("{}({}) -> break;\n", Ident(), expr_parser.GetResult());
}
std::string& Ident() {