Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1851)

Unified Diff: src/sksl/ir/SkSLField.h

Issue 2131223002: SkSL performance improvements (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/sksl/ir/SkSLExpression.h ('k') | src/sksl/ir/SkSLFieldAccess.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/sksl/ir/SkSLField.h
diff --git a/src/sksl/ir/SkSLField.h b/src/sksl/ir/SkSLField.h
index f2b68bc2bcae4567967a829e96e104cf7b38ed48..a01df2943d0d4a797bf7231b6347e31d9895e462 100644
--- a/src/sksl/ir/SkSLField.h
+++ b/src/sksl/ir/SkSLField.h
@@ -21,16 +21,16 @@ namespace SkSL {
* result of declaring anonymous interface blocks.
*/
struct Field : public Symbol {
- Field(Position position, std::shared_ptr<Variable> owner, int fieldIndex)
- : INHERITED(position, kField_Kind, owner->fType->fields()[fieldIndex].fName)
+ Field(Position position, const Variable& owner, int fieldIndex)
+ : INHERITED(position, kField_Kind, owner.fType.fields()[fieldIndex].fName)
, fOwner(owner)
, fFieldIndex(fieldIndex) {}
virtual std::string description() const override {
- return fOwner->description() + "." + fOwner->fType->fields()[fFieldIndex].fName;
+ return fOwner.description() + "." + fOwner.fType.fields()[fFieldIndex].fName;
}
- const std::shared_ptr<Variable> fOwner;
+ const Variable& fOwner;
const int fFieldIndex;
typedef Symbol INHERITED;
« no previous file with comments | « src/sksl/ir/SkSLExpression.h ('k') | src/sksl/ir/SkSLFieldAccess.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698