diff options
author | Robert Phillips <robertphillips@google.com> | 2018-03-15 13:59:35 -0400 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2018-03-15 18:39:06 +0000 |
commit | f733a72b8303b3f462245d3812b7b53e09c1937e (patch) | |
tree | 5aa18885425ae933894c6e14a9cff604fe4759d2 /src/gpu | |
parent | 36150be72983c6edd155166e4ca2052ca13b312d (diff) |
Disable CCPR path rendering in DDL mode
Change-Id: Ib16a7b037eff6cd0528177646c2eced467763a06
Reviewed-on: https://skia-review.googlesource.com/114560
Reviewed-by: Greg Daniel <egdaniel@google.com>
Commit-Queue: Robert Phillips <robertphillips@google.com>
Diffstat (limited to 'src/gpu')
-rw-r--r-- | src/gpu/GrContext.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gpu/GrContext.cpp b/src/gpu/GrContext.cpp index 4b624ee820..510225e01e 100644 --- a/src/gpu/GrContext.cpp +++ b/src/gpu/GrContext.cpp @@ -111,6 +111,7 @@ bool GrContext::initCommon(const GrContextOptions& options) { // Disable the small path renderer bc of the proxies in the atlas. They need to be // unified when the opLists are added back to the destination drawing manager. prcOptions.fGpuPathRenderers &= ~GpuPathRenderers::kSmall; + prcOptions.fGpuPathRenderers &= ~GpuPathRenderers::kCoverageCounting; } GrAtlasTextContext::Options atlasTextContextOptions; |