GrCoverageCountingPathRenderer_none.cpp 729 B

1234567891011121314151617181920212223
  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. #include "src/gpu/ccpr/GrCoverageCountingPathRenderer.h"
  8. bool GrCoverageCountingPathRenderer::IsSupported(const GrCaps& caps, CoverageType*) {
  9. return false;
  10. }
  11. sk_sp<GrCoverageCountingPathRenderer> GrCoverageCountingPathRenderer::CreateIfSupported(
  12. const GrCaps& caps, AllowCaching allowCaching, uint32_t contextUniqueID) {
  13. return nullptr;
  14. }
  15. std::unique_ptr<GrFragmentProcessor> GrCoverageCountingPathRenderer::makeClipProcessor(
  16. uint32_t opListID, const SkPath& deviceSpacePath, const SkIRect& accessRect,
  17. const GrCaps& caps) {
  18. return nullptr;
  19. }