diff options
author | mtklein <mtklein@chromium.org> | 2016-07-13 09:03:48 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-07-13 09:03:48 -0700 |
commit | 6e998e6137e6b25f047b5c5943f2b02485165e3e (patch) | |
tree | 4228b46bebcc38a9ab4a5d9405df4d0da855ef6e /include/core | |
parent | dd57dd796845da6ec2e1f44dc1e0b7821c1e4db1 (diff) |
Revert "Added the framework for having canvas/recorder/picture record depth_set's."
1-click revert failed again.
This reverts commit 1185d90c785f743364cc9113d7007a59af07470c.
BUG=skia:
TBR=
NOTRY=true
Review-Url: https://codereview.chromium.org/2147963002
Diffstat (limited to 'include/core')
-rw-r--r-- | include/core/SkCanvas.h | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/include/core/SkCanvas.h b/include/core/SkCanvas.h index fb3ae6d8e0..97aa3c7d8e 100644 --- a/include/core/SkCanvas.h +++ b/include/core/SkCanvas.h @@ -451,13 +451,6 @@ public: */ void resetMatrix(); - /** Add the specified translation to the current draw depth of the canvas. - @param z The distance to translate in Z. - Negative into screen, positive out of screen. - Without translation, the draw depth defaults to 0. - */ - void translateZ(SkScalar z); - /** * Modify the current clip with the specified rectangle. * @param rect The rect to combine with the current clip @@ -508,8 +501,7 @@ public: matrix, clipRegion() assumes its argument is already in device coordinates, and so no transformation is performed. @param deviceRgn The region to apply to the current clip - @param op The regio - n op to apply to the current clip + @param op The region op to apply to the current clip */ void clipRegion(const SkRegion& deviceRgn, SkRegion::Op op = SkRegion::kIntersect_Op); @@ -1268,10 +1260,6 @@ public: void temporary_internal_describeTopLayer(SkMatrix* matrix, SkIRect* clip_bounds); protected: - /** Returns the current (cumulative) draw depth of the canvas. - */ - SkScalar getZ() const; - /** After calling saveLayer(), there can be any number of devices that make up the top-most drawing area. LayerIter can be used to iterate through those devices. Note that the iterator is only valid until the next API @@ -1337,7 +1325,6 @@ protected: virtual void didRestore() {} virtual void didConcat(const SkMatrix&) {} virtual void didSetMatrix(const SkMatrix&) {} - virtual void didTranslateZ(SkScalar) {} virtual void onDrawAnnotation(const SkRect&, const char key[], SkData* value); virtual void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&); |