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

Side by Side Diff: include/utils/SkDeferredCanvas.h

Issue 248083002: Make drawText calls non-virtual, to ease SkFont and TextBlob (https://codereview.chromium.org/24385… (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « include/core/SkCanvas.h ('k') | include/utils/SkDumpCanvas.h » ('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 2012 Google Inc. 2 * Copyright 2012 Google Inc.
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 SkDeferredCanvas_DEFINED 8 #ifndef SkDeferredCanvas_DEFINED
9 #define SkDeferredCanvas_DEFINED 9 #define SkDeferredCanvas_DEFINED
10 10
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 const SkRect& dst, const SkPaint* paint, 155 const SkRect& dst, const SkPaint* paint,
156 DrawBitmapRectFlags flags) SK_OVERRIDE; 156 DrawBitmapRectFlags flags) SK_OVERRIDE;
157 157
158 virtual void drawBitmapMatrix(const SkBitmap& bitmap, const SkMatrix& m, 158 virtual void drawBitmapMatrix(const SkBitmap& bitmap, const SkMatrix& m,
159 const SkPaint* paint) SK_OVERRIDE; 159 const SkPaint* paint) SK_OVERRIDE;
160 virtual void drawBitmapNine(const SkBitmap& bitmap, const SkIRect& center, 160 virtual void drawBitmapNine(const SkBitmap& bitmap, const SkIRect& center,
161 const SkRect& dst, const SkPaint* paint) 161 const SkRect& dst, const SkPaint* paint)
162 SK_OVERRIDE; 162 SK_OVERRIDE;
163 virtual void drawSprite(const SkBitmap& bitmap, int left, int top, 163 virtual void drawSprite(const SkBitmap& bitmap, int left, int top,
164 const SkPaint* paint) SK_OVERRIDE; 164 const SkPaint* paint) SK_OVERRIDE;
165 virtual void drawText(const void* text, size_t byteLength, SkScalar x,
166 SkScalar y, const SkPaint& paint) SK_OVERRIDE;
167 virtual void drawPosText(const void* text, size_t byteLength,
168 const SkPoint pos[], const SkPaint& paint)
169 SK_OVERRIDE;
170 virtual void drawPosTextH(const void* text, size_t byteLength,
171 const SkScalar xpos[], SkScalar constY,
172 const SkPaint& paint) SK_OVERRIDE;
173 virtual void drawTextOnPath(const void* text, size_t byteLength,
174 const SkPath& path, const SkMatrix* matrix,
175 const SkPaint& paint) SK_OVERRIDE;
176 virtual void drawPicture(SkPicture& picture) SK_OVERRIDE; 165 virtual void drawPicture(SkPicture& picture) SK_OVERRIDE;
177 virtual void drawVertices(VertexMode vmode, int vertexCount, 166 virtual void drawVertices(VertexMode vmode, int vertexCount,
178 const SkPoint vertices[], const SkPoint texs[], 167 const SkPoint vertices[], const SkPoint texs[],
179 const SkColor colors[], SkXfermode* xmode, 168 const SkColor colors[], SkXfermode* xmode,
180 const uint16_t indices[], int indexCount, 169 const uint16_t indices[], int indexCount,
181 const SkPaint& paint) SK_OVERRIDE; 170 const SkPaint& paint) SK_OVERRIDE;
182 virtual SkBounder* setBounder(SkBounder* bounder) SK_OVERRIDE; 171 virtual SkBounder* setBounder(SkBounder* bounder) SK_OVERRIDE;
183 virtual SkDrawFilter* setDrawFilter(SkDrawFilter* filter) SK_OVERRIDE; 172 virtual SkDrawFilter* setDrawFilter(SkDrawFilter* filter) SK_OVERRIDE;
184 173
185 protected: 174 protected:
186 virtual void willSave(SaveFlags) SK_OVERRIDE; 175 virtual void willSave(SaveFlags) SK_OVERRIDE;
187 virtual SaveLayerStrategy willSaveLayer(const SkRect*, const SkPaint*, SaveF lags) SK_OVERRIDE; 176 virtual SaveLayerStrategy willSaveLayer(const SkRect*, const SkPaint*, SaveF lags) SK_OVERRIDE;
188 virtual void willRestore() SK_OVERRIDE; 177 virtual void willRestore() SK_OVERRIDE;
189 178
190 virtual void didConcat(const SkMatrix&) SK_OVERRIDE; 179 virtual void didConcat(const SkMatrix&) SK_OVERRIDE;
191 virtual void didSetMatrix(const SkMatrix&) SK_OVERRIDE; 180 virtual void didSetMatrix(const SkMatrix&) SK_OVERRIDE;
192 181
193 virtual void onDrawDRRect(const SkRRect&, const SkRRect&, 182 virtual void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) SK _OVERRIDE;
194 const SkPaint&) SK_OVERRIDE; 183 virtual void onDrawText(const void* text, size_t byteLength, SkScalar x, SkS calar y,
184 const SkPaint&) SK_OVERRIDE;
185 virtual void onDrawPosText(const void* text, size_t byteLength, const SkPoin t pos[],
186 const SkPaint&) SK_OVERRIDE;
187 virtual void onDrawPosTextH(const void* text, size_t byteLength, const SkSca lar xpos[],
188 SkScalar constY, const SkPaint&) SK_OVERRIDE;
189 virtual void onDrawTextOnPath(const void* text, size_t byteLength, const SkP ath& path,
190 const SkMatrix* matrix, const SkPaint&) SK_OVE RRIDE;
195 191
196 virtual void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) SK_OVERR IDE; 192 virtual void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) SK_OVERR IDE;
197 virtual void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) SK_OVE RRIDE; 193 virtual void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) SK_OVE RRIDE;
198 virtual void onClipPath(const SkPath&, SkRegion::Op, ClipEdgeStyle) SK_OVERR IDE; 194 virtual void onClipPath(const SkPath&, SkRegion::Op, ClipEdgeStyle) SK_OVERR IDE;
199 virtual void onClipRegion(const SkRegion&, SkRegion::Op) SK_OVERRIDE; 195 virtual void onClipRegion(const SkRegion&, SkRegion::Op) SK_OVERRIDE;
200 196
201 public: 197 public:
202 class NotificationClient { 198 class NotificationClient {
203 public: 199 public:
204 virtual ~NotificationClient() {} 200 virtual ~NotificationClient() {}
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 void validate() const; 241 void validate() const;
246 void init(); 242 void init();
247 bool fDeferredDrawing; 243 bool fDeferredDrawing;
248 244
249 friend class SkDeferredCanvasTester; // for unit testing 245 friend class SkDeferredCanvasTester; // for unit testing
250 typedef SkCanvas INHERITED; 246 typedef SkCanvas INHERITED;
251 }; 247 };
252 248
253 249
254 #endif 250 #endif
OLDNEW
« no previous file with comments | « include/core/SkCanvas.h ('k') | include/utils/SkDumpCanvas.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698