| Index: src/gpu/GrStencilAndCoverTextContext.cpp
|
| diff --git a/src/gpu/GrStencilAndCoverTextContext.cpp b/src/gpu/GrStencilAndCoverTextContext.cpp
|
| index 554038fc32fe330db5f6262247ea0b53fd313786..d63df88e83ae0a2a0be7bd389b53a4d41ada765e 100644
|
| --- a/src/gpu/GrStencilAndCoverTextContext.cpp
|
| +++ b/src/gpu/GrStencilAndCoverTextContext.cpp
|
| @@ -33,8 +33,8 @@ GrStencilAndCoverTextContext::GrStencilAndCoverTextContext(GrContext* context,
|
| GrStencilAndCoverTextContext*
|
| GrStencilAndCoverTextContext::Create(GrContext* context, GrDrawContext* drawContext,
|
| const SkSurfaceProps& surfaceProps) {
|
| - GrStencilAndCoverTextContext* textContext = SkNEW_ARGS(GrStencilAndCoverTextContext,
|
| - (context, drawContext, surfaceProps));
|
| + GrStencilAndCoverTextContext* textContext =
|
| + new GrStencilAndCoverTextContext(context, drawContext, surfaceProps);
|
| textContext->fFallbackTextContext = GrAtlasTextContext::Create(context, drawContext, surfaceProps);
|
|
|
| return textContext;
|
|
|