aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ir/SkSLVariableReference.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/SkSLVariableReference.h
parent5dba301e916448bbb17bfe8e70dc367f32eb7159 (diff)
SkSL performance improvements (plus a couple of minor warning fixes)
Diffstat (limited to 'src/sksl/ir/SkSLVariableReference.h')
-rw-r--r--src/sksl/ir/SkSLVariableReference.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/sksl/ir/SkSLVariableReference.h b/src/sksl/ir/SkSLVariableReference.h
index 8499511a1b..b443da1f22 100644
--- a/src/sksl/ir/SkSLVariableReference.h
+++ b/src/sksl/ir/SkSLVariableReference.h
@@ -20,15 +20,15 @@ namespace SkSL {
* there is only one Variable 'x', but two VariableReferences to it.
*/
struct VariableReference : public Expression {
- VariableReference(Position position, std::shared_ptr<Variable> variable)
- : INHERITED(position, kVariableReference_Kind, variable->fType)
- , fVariable(std::move(variable)) {}
+ VariableReference(Position position, const Variable& variable)
+ : INHERITED(position, kVariableReference_Kind, variable.fType)
+ , fVariable(variable) {}
std::string description() const override {
- return fVariable->fName;
+ return fVariable.fName;
}
- const std::shared_ptr<Variable> fVariable;
+ const Variable& fVariable;
typedef Expression INHERITED;
};