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

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

Issue 2185393003: added initial GLSL support to skslc (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: added initial GLSL support to skslc 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
Index: src/sksl/ir/SkSLVariable.h
diff --git a/src/sksl/ir/SkSLVariable.h b/src/sksl/ir/SkSLVariable.h
index 39af3093b6ab20ce53e35501b00906c88075344e..217b1006b6ce4d6911f3b971f6c3460c1fc305f1 100644
--- a/src/sksl/ir/SkSLVariable.h
+++ b/src/sksl/ir/SkSLVariable.h
@@ -40,7 +40,7 @@ struct Variable : public Symbol {
return fModifiers.description() + fType.fName + " " + fName;
}
- const Modifiers fModifiers;
+ mutable Modifiers fModifiers;
dogben 2016/07/31 23:20:21 nit: don't need mutable
const Type& fType;
const Storage fStorage;

Powered by Google App Engine
This is Rietveld 408576698