aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gpu/GrTessellator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpu/GrTessellator.cpp b/src/gpu/GrTessellator.cpp
index bedc10f62b..5a60e7a14a 100644
--- a/src/gpu/GrTessellator.cpp
+++ b/src/gpu/GrTessellator.cpp
@@ -1661,7 +1661,7 @@ void sort_and_simplify(VertexList* vertices, Comparator& c, SkChunkAlloc& alloc)
merge_sort(vertices, c);
merge_coincident_vertices(vertices, c, alloc);
#if LOGGING_ENABLED
- for (Vertex* v = *vertices; v != nullptr; v = v->fNext) {
+ for (Vertex* v = vertices->fHead; v != nullptr; v = v->fNext) {
static float gID = 0.0f;
v->fID = gID++;
}