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

Side by Side Diff: src/sksl/ir/SkSLExpression.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 unified diff | Download patch
« no previous file with comments | « src/sksl/ir/SkSLConstructor.h ('k') | src/sksl/ir/SkSLField.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2016 Google Inc. 2 * Copyright 2016 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SKSL_EXPRESSION 8 #ifndef SKSL_EXPRESSION
9 #define SKSL_EXPRESSION 9 #define SKSL_EXPRESSION
10 10
(...skipping 17 matching lines...) Expand all
28 kFunctionCall_Kind, 28 kFunctionCall_Kind,
29 kIndex_Kind, 29 kIndex_Kind,
30 kPrefix_Kind, 30 kPrefix_Kind,
31 kPostfix_Kind, 31 kPostfix_Kind,
32 kSwizzle_Kind, 32 kSwizzle_Kind,
33 kVariableReference_Kind, 33 kVariableReference_Kind,
34 kTernary_Kind, 34 kTernary_Kind,
35 kTypeReference_Kind, 35 kTypeReference_Kind,
36 }; 36 };
37 37
38 Expression(Position position, Kind kind, std::shared_ptr<Type> type) 38 Expression(Position position, Kind kind, const Type& type)
39 : INHERITED(position) 39 : INHERITED(position)
40 , fKind(kind) 40 , fKind(kind)
41 , fType(std::move(type)) {} 41 , fType(std::move(type)) {}
42 42
43 virtual bool isConstant() const { 43 virtual bool isConstant() const {
44 return false; 44 return false;
45 } 45 }
46 46
47 const Kind fKind; 47 const Kind fKind;
48 const std::shared_ptr<Type> fType; 48 const Type& fType;
49 49
50 typedef IRNode INHERITED; 50 typedef IRNode INHERITED;
51 }; 51 };
52 52
53 } // namespace 53 } // namespace
54 54
55 #endif 55 #endif
OLDNEW
« no previous file with comments | « src/sksl/ir/SkSLConstructor.h ('k') | src/sksl/ir/SkSLField.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698