aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ir/SkSLForStatement.h
diff options
context:
space:
mode:
authorGravatar ethannicholas <ethannicholas@google.com>2016-07-12 09:07:21 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-07-12 09:07:21 -0700
commit9fd67a1f53809f5eff1210dd107241b450c48acc (patch)
treeda60b78933d92f796cf1f5dc3ff3dffa6febf78f /src/sksl/ir/SkSLForStatement.h
parent5dba301e916448bbb17bfe8e70dc367f32eb7159 (diff)
SkSL performance improvements (plus a couple of minor warning fixes)
Diffstat (limited to 'src/sksl/ir/SkSLForStatement.h')
-rw-r--r--src/sksl/ir/SkSLForStatement.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/sksl/ir/SkSLForStatement.h b/src/sksl/ir/SkSLForStatement.h
index 70bb4014c8..642d15125e 100644
--- a/src/sksl/ir/SkSLForStatement.h
+++ b/src/sksl/ir/SkSLForStatement.h
@@ -10,6 +10,7 @@
#include "SkSLExpression.h"
#include "SkSLStatement.h"
+#include "SkSLSymbolTable.h"
namespace SkSL {
@@ -19,12 +20,13 @@ namespace SkSL {
struct ForStatement : public Statement {
ForStatement(Position position, std::unique_ptr<Statement> initializer,
std::unique_ptr<Expression> test, std::unique_ptr<Expression> next,
- std::unique_ptr<Statement> statement)
+ std::unique_ptr<Statement> statement, std::shared_ptr<SymbolTable> symbols)
: INHERITED(position, kFor_Kind)
, fInitializer(std::move(initializer))
, fTest(std::move(test))
, fNext(std::move(next))
- , fStatement(std::move(statement)) {}
+ , fStatement(std::move(statement))
+ , fSymbols(symbols) {}
std::string description() const override {
std::string result = "for (";
@@ -47,6 +49,7 @@ struct ForStatement : public Statement {
const std::unique_ptr<Expression> fTest;
const std::unique_ptr<Expression> fNext;
const std::unique_ptr<Statement> fStatement;
+ const std::shared_ptr<SymbolTable> fSymbols;
typedef Statement INHERITED;
};