aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkDraw.h
diff options
context:
space:
mode:
authorGravatar Mike Klein <mtklein@google.com>2018-07-25 13:28:44 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-07-25 18:17:26 +0000
commit48b649060c8d3ae104274703553d7c03a58f3ddd (patch)
tree6f29689578387a2c1234a6aeb89803d3f6924c59 /src/core/SkDraw.h
parent1c94a8fabed7196e985a0ed81ce8325c8f606940 (diff)
remove SkThreadedBMPDevice and friends
It is unused, is becoming a maintainence burden and source of bugs, and takes up a lot of time on the *SAN bots. Change-Id: If383eb6e4838ca23140f9e16d518b1bfc655fa12 Reviewed-on: https://skia-review.googlesource.com/143307 Auto-Submit: Mike Klein <mtklein@google.com> Commit-Queue: Herb Derby <herb@google.com> Reviewed-by: Herb Derby <herb@google.com>
Diffstat (limited to 'src/core/SkDraw.h')
-rw-r--r--src/core/SkDraw.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/core/SkDraw.h b/src/core/SkDraw.h
index deb7451b99..a64abe74ff 100644
--- a/src/core/SkDraw.h
+++ b/src/core/SkDraw.h
@@ -31,7 +31,6 @@ class SkRasterClip;
struct SkDrawProcs;
struct SkRect;
class SkRRect;
-struct SkInitOnceData;
class SkDraw {
public:
@@ -137,11 +136,11 @@ private:
void drawPath(const SkPath&, const SkPaint&, const SkMatrix* preMatrix,
bool pathIsMutable, bool drawCoverage,
- SkBlitter* customBlitter = nullptr, SkInitOnceData* iData = nullptr) const;
+ SkBlitter* customBlitter = nullptr) const;
void drawLine(const SkPoint[2], const SkPaint&) const;
void drawDevPath(const SkPath& devPath, const SkPaint& paint, bool drawCoverage,
- SkBlitter* customBlitter, bool doFill, SkInitOnceData* iData = nullptr) const;
+ SkBlitter* customBlitter, bool doFill) const;
/**
* Return the current clip bounds, in local coordinates, with slop to account
* for antialiasing or hairlines (i.e. device-bounds outset by 1, and then
@@ -169,8 +168,6 @@ public:
#else
void validate() const {}
#endif
-
- friend class SkThreadedBMPDevice; // to access private method drawPath
};
#endif