diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/private/GrTypesPriv.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/private/GrTypesPriv.h b/include/private/GrTypesPriv.h index e1e797bb3c..04a0111744 100644 --- a/include/private/GrTypesPriv.h +++ b/include/private/GrTypesPriv.h @@ -757,7 +757,9 @@ enum class GpuPathRenderers { kTessellating = 1 << 7, kAll = (kTessellating | (kTessellating - 1)), - kDefault = kAll + + // Temporarily disabling CCPR by default until it has had a time to soak. + kDefault = kAll & ~kCoverageCounting, }; GR_MAKE_BITFIELD_CLASS_OPS(GpuPathRenderers) |