blob: 1b2a55e0e700805f9a11927240ed9da278412614 [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
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "src/gpu/ccpr/GrCoverageCountingPathRenderer.h"
Kevin Lubick93faa672018-10-10 15:54:53 -04009
Chris Daltonc3318f02019-07-19 14:20:53 -060010bool GrCoverageCountingPathRenderer::IsSupported(const GrCaps& caps, CoverageType*) {
Kevin Lubick93faa672018-10-10 15:54:53 -040011 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(
Greg Danielf41b2bd2019-08-22 16:19:24 -040020 uint32_t opsTaskID, const SkPath& deviceSpacePath, const SkIRect& accessRect,
Chris Daltonc3318f02019-07-19 14:20:53 -060021 const GrCaps& caps) {
Kevin Lubick93faa672018-10-10 15:54:53 -040022 return nullptr;
23}