bool GrStencilAndCoverPathRenderer::canDrawPath(const SkPath& path,
                                                const SkStroke& stroke,
                                                const GrDrawTarget* target,
                                                bool antiAlias) const {
    return stroke.getDoFill() &&
           !antiAlias && // doesn't do per-path AA, relies on the target having MSAA
           target->getDrawState().getStencil().isDisabled();
}