Fix attrib order with local coords in AALinearizingConvexPathRenderer

Change-Id: Ie14204015dfcbaed55a2a4f86f5decc695b6a983
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/283017
Commit-Queue: Brian Salomon <bsalomon@google.com>
Commit-Queue: Robert Phillips <robertphillips@google.com>
Auto-Submit: Brian Salomon <bsalomon@google.com>
Reviewed-by: Robert Phillips <robertphillips@google.com>
diff --git a/src/gpu/ops/GrAALinearizingConvexPathRenderer.cpp b/src/gpu/ops/GrAALinearizingConvexPathRenderer.cpp
index 43936b9..64eedbe 100644
--- a/src/gpu/ops/GrAALinearizingConvexPathRenderer.cpp
+++ b/src/gpu/ops/GrAALinearizingConvexPathRenderer.cpp
@@ -99,7 +99,7 @@
         if (localCoordsMatrix) {
             localCoordsMatrix->mapPoints(&lc, &tess.point(i), 1);
         }
-        verts.write(tess.point(i), GrVertexWriter::If(localCoordsMatrix, lc), color,
+        verts.write(tess.point(i), color, GrVertexWriter::If(localCoordsMatrix, lc),
                     tess.coverage(i));
     }