| Index: src/gpu/GrDistanceFieldTextContext.cpp
|
| diff --git a/src/gpu/GrDistanceFieldTextContext.cpp b/src/gpu/GrDistanceFieldTextContext.cpp
|
| index 9ab228be8137dadcf897a2c047979f371e5fcc85..ac75874e681c54a8337c5bff4421e5df3a534565 100755
|
| --- a/src/gpu/GrDistanceFieldTextContext.cpp
|
| +++ b/src/gpu/GrDistanceFieldTextContext.cpp
|
| @@ -74,7 +74,11 @@ GrDistanceFieldTextContext* GrDistanceFieldTextContext::Create(GrContext* contex
|
| bool enable) {
|
| GrDistanceFieldTextContext* textContext = SkNEW_ARGS(GrDistanceFieldTextContext,
|
| (context, gpuDevice, props, enable));
|
| +#ifdef USE_BITMAP_TEXTBLOBS
|
| + textContext->fFallbackTextContext = GrBitmapTextContextB::Create(context, gpuDevice, props);
|
| +#else
|
| textContext->fFallbackTextContext = GrBitmapTextContext::Create(context, gpuDevice, props);
|
| +#endif
|
|
|
| return textContext;
|
| }
|
|
|