aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/ops/GrMSAAPathRenderer.h
diff options
context:
space:
mode:
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