diff options
Diffstat (limited to 'src/gpu/GrPathRendererChain.cpp')
-rw-r--r-- | src/gpu/GrPathRendererChain.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/gpu/GrPathRendererChain.cpp b/src/gpu/GrPathRendererChain.cpp index b371c3ef75..6c8177f8e0 100644 --- a/src/gpu/GrPathRendererChain.cpp +++ b/src/gpu/GrPathRendererChain.cpp @@ -21,7 +21,6 @@ #include "ops/GrDashLinePathRenderer.h" #include "ops/GrDefaultPathRenderer.h" #include "ops/GrMSAAPathRenderer.h" -#include "ops/GrPLSPathRenderer.h" #include "ops/GrStencilAndCoverPathRenderer.h" #include "ops/GrTessellatingPathRenderer.h" @@ -54,11 +53,6 @@ GrPathRendererChain::GrPathRendererChain(GrContext* context, const Options& opti if (options.fGpuPathRenderers & GpuPathRenderers::kAALinearizing) { fChain.push_back(sk_make_sp<GrAALinearizingConvexPathRenderer>()); } - if (options.fGpuPathRenderers & GpuPathRenderers::kPLS) { - if (caps.shaderCaps()->plsPathRenderingSupport()) { - fChain.push_back(sk_make_sp<GrPLSPathRenderer>()); - } - } if (options.fGpuPathRenderers & GpuPathRenderers::kDistanceField) { fChain.push_back(sk_make_sp<GrAADistanceFieldPathRenderer>()); } |