aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGravatar Mike Reed <reed@google.com>2017-03-16 14:38:48 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-03-16 19:17:11 +0000
commitaa9e3326f71c74e6250ae783cc3257d835624dd0 (patch)
treebeaf54d29c342a15c194dd4ff23296088dbdf4f1 /tests
parent2bf4b3a97b770811d9e0558dbbfbdb57cfafbdb7 (diff)
Revert[4] "store vertices arrays inline with object""""
This reverts commit 0c492cfe1713d6895d1d513e754d938ff0faa5e5. BUG=skia: Change-Id: I63bce834fee6dd6f043b3889ac4ec287dd03d2e6 Reviewed-on: https://skia-review.googlesource.com/9809 Reviewed-by: Herb Derby <herb@google.com> Commit-Queue: Mike Reed <reed@google.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/VerticesTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/VerticesTest.cpp b/tests/VerticesTest.cpp
index 8cf55142f3..9621d80cd0 100644
--- a/tests/VerticesTest.cpp
+++ b/tests/VerticesTest.cpp
@@ -53,8 +53,8 @@ DEF_TEST(Vertices, reporter) {
int vCount = 4;
int iCount = 6;
- const uint32_t texFlags[] = { 0, SkVertices::kHasTexs_Flag };
- const uint32_t colFlags[] = { 0, SkVertices::kHasColors_Flag };
+ const uint32_t texFlags[] = { 0, SkVertices::kHasTexCoords_BuilderFlag };
+ const uint32_t colFlags[] = { 0, SkVertices::kHasColors_BuilderFlag };
for (auto texF : texFlags) {
for (auto colF : colFlags) {
uint32_t flags = texF | colF;