From f733a72b8303b3f462245d3812b7b53e09c1937e Mon Sep 17 00:00:00 2001 From: Robert Phillips Date: Thu, 15 Mar 2018 13:59:35 -0400 Subject: [PATCH] Disable CCPR path rendering in DDL mode Change-Id: Ib16a7b037eff6cd0528177646c2eced467763a06 Reviewed-on: https://skia-review.googlesource.com/114560 Reviewed-by: Greg Daniel Commit-Queue: Robert Phillips --- src/gpu/GrContext.cpp | 1 + 1 file changed, 1 insertion(+) 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;