• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
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 
IsSupported(const GrCaps & caps)10 bool GrCoverageCountingPathRenderer::IsSupported(const GrCaps& caps) {
11     return false;
12 }
13 
CreateIfSupported(const GrCaps & caps,AllowCaching allowCaching,uint32_t contextUniqueID)14 sk_sp<GrCoverageCountingPathRenderer> GrCoverageCountingPathRenderer::CreateIfSupported(
15         const GrCaps& caps, AllowCaching allowCaching, uint32_t contextUniqueID) {
16     return nullptr;
17 }
18 
makeClipProcessor(uint32_t opListID,const SkPath & deviceSpacePath,const SkIRect & accessRect,int rtWidth,int rtHeight,const GrCaps & caps)19 std::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 }
24