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

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

Issue 1476563002: Remove SkDrawProcs (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: add back skdraw Created 5 years 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/SkDraw.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 /* 2 /*
3 * Copyright 2006 The Android Open Source Project 3 * Copyright 2006 The Android Open Source Project
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 9
10 #ifndef SkDraw_DEFINED 10 #ifndef SkDraw_DEFINED
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 computeConservativeLocalClipBounds(SkRect* bounds) const; 140 computeConservativeLocalClipBounds(SkRect* bounds) const;
141 141
142 public: 142 public:
143 SkPixmap fDst; 143 SkPixmap fDst;
144 const SkMatrix* fMatrix; // required 144 const SkMatrix* fMatrix; // required
145 const SkRegion* fClip; // DEPRECATED 145 const SkRegion* fClip; // DEPRECATED
146 const SkRasterClip* fRC; // required 146 const SkRasterClip* fRC; // required
147 147
148 const SkClipStack* fClipStack; // optional 148 const SkClipStack* fClipStack; // optional
149 SkBaseDevice* fDevice; // optional 149 SkBaseDevice* fDevice; // optional
150 SkDrawProcs* fProcs; // optional
151 150
152 #ifdef SK_DEBUG 151 #ifdef SK_DEBUG
153 void validate() const; 152 void validate() const;
154 #else 153 #else
155 void validate() const {} 154 void validate() const {}
156 #endif 155 #endif
157 }; 156 };
158 157
159 #endif 158 #endif
OLDNEW
« no previous file with comments | « no previous file | src/core/SkDraw.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698