aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ir/SkSLVarDeclarationsStatement.h
diff options
context:
space:
mode:
authorGravatar Ethan Nicholas <ethannicholas@google.com>2017-06-21 11:25:18 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-06-21 15:55:06 +0000
commit7da6dfabc44891c51dedcb4754477b662d8c8a0a (patch)
treef64e1e88cbeb67319490ae138eb5afdb6175e627 /src/sksl/ir/SkSLVarDeclarationsStatement.h
parentce57552e11776c8f93798c3a2244fa378604b4af (diff)
implemented mustImplementGSInvocationsWithLoop workaround in sksl
Third time's the charm This reverts commit 84cda40bd7e98f4e19574c6e946395e244901408. Bug: skia: Change-Id: I2c0f4425122a94beb7b4053ee6e891faa8a5f290 Reviewed-on: https://skia-review.googlesource.com/20441 Reviewed-by: Ethan Nicholas <ethannicholas@google.com> Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
Diffstat (limited to 'src/sksl/ir/SkSLVarDeclarationsStatement.h')
-rw-r--r--src/sksl/ir/SkSLVarDeclarationsStatement.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sksl/ir/SkSLVarDeclarationsStatement.h b/src/sksl/ir/SkSLVarDeclarationsStatement.h
index ab6753610f..a6a95a9c08 100644
--- a/src/sksl/ir/SkSLVarDeclarationsStatement.h
+++ b/src/sksl/ir/SkSLVarDeclarationsStatement.h
@@ -31,7 +31,7 @@ struct VarDeclarationsStatement : public Statement {
}
String description() const override {
- return fDeclaration->description();
+ return fDeclaration->description() + ";";
}
std::shared_ptr<VarDeclarations> fDeclaration;