Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Side by Side Diff: include/core/SkCanvas.h

Issue 354953008: delete code for SK_SUPPORT_LEGACY_GETTOTALCLIP (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/core/SkCanvas.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2006 The Android Open Source Project 2 * Copyright 2006 The Android Open Source Project
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SkCanvas_DEFINED 8 #ifndef SkCanvas_DEFINED
9 #define SkCanvas_DEFINED 9 #define SkCanvas_DEFINED
10 10
(...skipping 1093 matching lines...) Expand 10 before | Expand all | Expand 10 after
1104 kEmpty_ClipType = 0, 1104 kEmpty_ClipType = 0,
1105 kRect_ClipType, 1105 kRect_ClipType,
1106 kComplex_ClipType 1106 kComplex_ClipType
1107 }; 1107 };
1108 /** Returns a description of the total clip; may be cheaper than 1108 /** Returns a description of the total clip; may be cheaper than
1109 getting the clip and querying it directly. 1109 getting the clip and querying it directly.
1110 */ 1110 */
1111 virtual ClipType getClipType() const; 1111 virtual ClipType getClipType() const;
1112 #endif 1112 #endif
1113 1113
1114 #ifdef SK_SUPPORT_LEGACY_GETTOTALCLIP
1115 /** DEPRECATED -- need to move this guy to private/friend
1116 * Return the current device clip (concatenation of all clip calls).
1117 * This does not account for the translate in any of the devices.
1118 * @return the current device clip (concatenation of all clip calls).
1119 */
1120 const SkRegion& getTotalClip() const;
1121 #endif
1122
1123 /** Return the clip stack. The clip stack stores all the individual 1114 /** Return the clip stack. The clip stack stores all the individual
1124 * clips organized by the save/restore frame in which they were 1115 * clips organized by the save/restore frame in which they were
1125 * added. 1116 * added.
1126 * @return the current clip stack ("list" of individual clip elements) 1117 * @return the current clip stack ("list" of individual clip elements)
1127 */ 1118 */
1128 const SkClipStack* getClipStack() const { 1119 const SkClipStack* getClipStack() const {
1129 return &fClipStack; 1120 return &fClipStack;
1130 } 1121 }
1131 1122
1132 typedef SkCanvasClipVisitor ClipVisitor; 1123 typedef SkCanvasClipVisitor ClipVisitor;
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after
1497 1488
1498 class SkCanvasClipVisitor { 1489 class SkCanvasClipVisitor {
1499 public: 1490 public:
1500 virtual ~SkCanvasClipVisitor(); 1491 virtual ~SkCanvasClipVisitor();
1501 virtual void clipRect(const SkRect&, SkRegion::Op, bool antialias) = 0; 1492 virtual void clipRect(const SkRect&, SkRegion::Op, bool antialias) = 0;
1502 virtual void clipRRect(const SkRRect&, SkRegion::Op, bool antialias) = 0; 1493 virtual void clipRRect(const SkRRect&, SkRegion::Op, bool antialias) = 0;
1503 virtual void clipPath(const SkPath&, SkRegion::Op, bool antialias) = 0; 1494 virtual void clipPath(const SkPath&, SkRegion::Op, bool antialias) = 0;
1504 }; 1495 };
1505 1496
1506 #endif 1497 #endif
OLDNEW
« no previous file with comments | « no previous file | src/core/SkCanvas.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698