blob: 5de32aaddb52c90a35148952f745f72b90cc110f [file] [log] [blame]
Kevin Lubick93faa672018-10-10 15:54:53 -04001/*
2 * Copyright 2018 Google LLC
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "GrCoverageCountingPathRenderer.h"
9
10bool GrCoverageCountingPathRenderer::IsSupported(const GrCaps& caps) {
11 return false;
12}
13
14sk_sp<GrCoverageCountingPathRenderer> GrCoverageCountingPathRenderer::CreateIfSupported(
Chris Dalton351e80c2019-01-06 22:51:00 -070015 const GrCaps& caps, AllowCaching allowCaching, uint32_t contextUniqueID) {
Kevin Lubick93faa672018-10-10 15:54:53 -040016 return nullptr;
17}
18
19std::unique_ptr<GrFragmentProcessor> GrCoverageCountingPathRenderer::makeClipProcessor(
20 uint32_t opListID, const SkPath& deviceSpacePath, const SkIRect& accessRect, int rtWidth,
21 int rtHeight, const GrCaps& caps) {
22 return nullptr;
23}