| Index: src/gpu/GrPathProcessor.cpp
|
| diff --git a/src/gpu/GrPathProcessor.cpp b/src/gpu/GrPathProcessor.cpp
|
| index 6ecad59bc742024d2e755e02debfcbb9f45f6949..405152cea84bd9baa06690e49b18d8aef7f91278 100644
|
| --- a/src/gpu/GrPathProcessor.cpp
|
| +++ b/src/gpu/GrPathProcessor.cpp
|
| @@ -72,8 +72,7 @@ public:
|
| &v).toIndex();
|
| fInstalledTransforms[i][t].fType = varyingType;
|
|
|
| - SkNEW_APPEND_TO_TARRAY(&(*tout)[i], GrGLSLTransformedCoords,
|
| - (SkString(v.fsIn()), varyingType));
|
| + (*tout)[i].emplace_back(SkString(v.fsIn()), varyingType);
|
| }
|
| }
|
| }
|
|
|