aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/ops/GrMSAAPathRenderer.h
diff options
context:
space:
mode:
authorGravatar Chris Dalton <csmartdalton@google.com>2018-04-25 12:28:03 -0600
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-04-25 19:59:59 +0000
commit218c29453f9f8aea98afef45ced2c151fe326a0f (patch)
treea2f04ff3e4dd20dfc58146c990124bcc39a52bb2 /src/gpu/ops/GrMSAAPathRenderer.h
parent25af671a3d7d790b31b085172952df3867337431 (diff)
Remove the MSAA path renderer
Bug: skia: Change-Id: Ib18bede613c8d27fd6326f655dc2d638e35870ff Reviewed-on: https://skia-review.googlesource.com/123726 Reviewed-by: Brian Salomon <bsalomon@google.com> Commit-Queue: Chris Dalton <csmartdalton@google.com>
Diffstat (limited to 'src/gpu/ops/GrMSAAPathRenderer.h')
-rw-r--r--src/gpu/ops/GrMSAAPathRenderer.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/gpu/ops/GrMSAAPathRenderer.h b/src/gpu/ops/GrMSAAPathRenderer.h
deleted file mode 100644
index 1353867f16..0000000000
--- a/src/gpu/ops/GrMSAAPathRenderer.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * Copyright 2011 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#ifndef GrMSAAPathRenderer_DEFINED
-#define GrMSAAPathRenderer_DEFINED
-
-#include "GrPathRenderer.h"
-#include "SkTypes.h"
-
-class SK_API GrMSAAPathRenderer : public GrPathRenderer {
-private:
- StencilSupport onGetStencilSupport(const GrShape&) const override;
-
- CanDrawPath onCanDrawPath(const CanDrawPathArgs&) const override;
-
- bool onDrawPath(const DrawPathArgs&) override;
-
- void onStencilPath(const StencilPathArgs&) override;
-
- bool internalDrawPath(GrRenderTargetContext*,
- GrPaint&&,
- GrAAType,
- const GrUserStencilSettings&,
- const GrClip&,
- const SkMatrix& viewMatrix,
- const GrShape&,
- bool stencilOnly);
-
- typedef GrPathRenderer INHERITED;
-};
-
-#endif