aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ir
diff options
context:
space:
mode:
authorGravatar Ethan Nicholas <ethannicholas@google.com>2018-01-17 15:21:50 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-01-17 21:57:27 +0000
commitb6ba82ca0a5848afc81633cb1139e4c4807932c9 (patch)
tree79ca4a33e427e45532304e65e3c36a03c3f14658 /src/sksl/ir
parentd8b01ad4054ca202bb231f45e15b2310a28bc57c (diff)
sk_in array is now sized correctly in SPIR-V output
Bug: skia: Change-Id: Id63c8d79a7b60485d2f4071caca245c46691c9d3 Reviewed-on: https://skia-review.googlesource.com/95780 Reviewed-by: Chris Dalton <csmartdalton@google.com> Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
Diffstat (limited to 'src/sksl/ir')
-rw-r--r--src/sksl/ir/SkSLInterfaceBlock.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sksl/ir/SkSLInterfaceBlock.h b/src/sksl/ir/SkSLInterfaceBlock.h
index f7483da8f2..4a7bf9307b 100644
--- a/src/sksl/ir/SkSLInterfaceBlock.h
+++ b/src/sksl/ir/SkSLInterfaceBlock.h
@@ -61,7 +61,7 @@ struct InterfaceBlock : public ProgramElement {
const Variable& fVariable;
const String fTypeName;
const String fInstanceName;
- const std::vector<std::unique_ptr<Expression>> fSizes;
+ std::vector<std::unique_ptr<Expression>> fSizes;
const std::shared_ptr<SymbolTable> fTypeOwner;
typedef ProgramElement INHERITED;