| Index: src/gpu/GrStencilAndCoverTextContext.cpp
|
| diff --git a/src/gpu/GrStencilAndCoverTextContext.cpp b/src/gpu/GrStencilAndCoverTextContext.cpp
|
| index 330f79d9465fdde3e4568ed503913f8c256a096b..0d649154a2dacc29385f32c2f00e1c0347b7ef3f 100644
|
| --- a/src/gpu/GrStencilAndCoverTextContext.cpp
|
| +++ b/src/gpu/GrStencilAndCoverTextContext.cpp
|
| @@ -7,7 +7,6 @@
|
|
|
| #include "GrStencilAndCoverTextContext.h"
|
| #include "GrAtlasTextContext.h"
|
| -#include "GrBitmapTextContext.h"
|
| #include "GrDrawTarget.h"
|
| #include "GrGpu.h"
|
| #include "GrPath.h"
|
| @@ -35,12 +34,8 @@ GrStencilAndCoverTextContext::Create(GrContext* context, SkGpuDevice* gpuDevice,
|
| const SkDeviceProperties& props) {
|
| GrStencilAndCoverTextContext* textContext = SkNEW_ARGS(GrStencilAndCoverTextContext,
|
| (context, gpuDevice, props));
|
| -#ifdef USE_BITMAP_TEXTBLOBS
|
| textContext->fFallbackTextContext = GrAtlasTextContext::Create(context, gpuDevice, props,
|
| false);
|
| -#else
|
| - textContext->fFallbackTextContext = GrBitmapTextContext::Create(context, gpuDevice, props);
|
| -#endif
|
|
|
| return textContext;
|
| }
|
|
|