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

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

Issue 1126273002: Revert of Revert of Make drawImage a virtual on SkDevice (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 7 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 | « include/core/SkImage.h ('k') | 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 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 170
171 void onDrawPaint(const SkPaint&) override; 171 void onDrawPaint(const SkPaint&) override;
172 void onDrawPoints(PointMode, size_t count, const SkPoint pts[], const SkPain t&) override; 172 void onDrawPoints(PointMode, size_t count, const SkPoint pts[], const SkPain t&) override;
173 void onDrawRect(const SkRect&, const SkPaint&) override; 173 void onDrawRect(const SkRect&, const SkPaint&) override;
174 void onDrawOval(const SkRect&, const SkPaint&) override; 174 void onDrawOval(const SkRect&, const SkPaint&) override;
175 void onDrawRRect(const SkRRect&, const SkPaint&) override; 175 void onDrawRRect(const SkRRect&, const SkPaint&) override;
176 void onDrawPath(const SkPath&, const SkPaint&) override; 176 void onDrawPath(const SkPath&, const SkPaint&) override;
177 void onDrawBitmap(const SkBitmap&, SkScalar left, SkScalar top, const SkPain t*) override; 177 void onDrawBitmap(const SkBitmap&, SkScalar left, SkScalar top, const SkPain t*) override;
178 void onDrawBitmapRect(const SkBitmap&, const SkRect* src, const SkRect& dst, const SkPaint*, 178 void onDrawBitmapRect(const SkBitmap&, const SkRect* src, const SkRect& dst, const SkPaint*,
179 DrawBitmapRectFlags flags) override; 179 DrawBitmapRectFlags flags) override;
180 #if 0
181 // rely on conversion to bitmap(for now)
182 void onDrawImage(const SkImage*, SkScalar left, SkScalar top, const SkPaint* ) override; 180 void onDrawImage(const SkImage*, SkScalar left, SkScalar top, const SkPaint* ) override;
183 void onDrawImageRect(const SkImage*, const SkRect* src, const SkRect& dst, 181 void onDrawImageRect(const SkImage*, const SkRect* src, const SkRect& dst,
184 const SkPaint*) override; 182 const SkPaint*) override;
185 #endif
186 void onDrawBitmapNine(const SkBitmap&, const SkIRect& center, const SkRect& dst, 183 void onDrawBitmapNine(const SkBitmap&, const SkIRect& center, const SkRect& dst,
187 const SkPaint*) override; 184 const SkPaint*) override;
188 void onDrawSprite(const SkBitmap&, int left, int top, const SkPaint*) overri de; 185 void onDrawSprite(const SkBitmap&, int left, int top, const SkPaint*) overri de;
189 void onDrawVertices(VertexMode vmode, int vertexCount, 186 void onDrawVertices(VertexMode vmode, int vertexCount,
190 const SkPoint vertices[], const SkPoint texs[], 187 const SkPoint vertices[], const SkPoint texs[],
191 const SkColor colors[], SkXfermode* xmode, 188 const SkColor colors[], SkXfermode* xmode,
192 const uint16_t indices[], int indexCount, 189 const uint16_t indices[], int indexCount,
193 const SkPaint&) override; 190 const SkPaint&) override;
194 191
195 void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) override; 192 void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) override;
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 250
254 mutable SkISize fCachedCanvasSize; 251 mutable SkISize fCachedCanvasSize;
255 mutable bool fCachedCanvasSizeDirty; 252 mutable bool fCachedCanvasSizeDirty;
256 253
257 friend class SkDeferredCanvasTester; // for unit testing 254 friend class SkDeferredCanvasTester; // for unit testing
258 typedef SkCanvas INHERITED; 255 typedef SkCanvas INHERITED;
259 }; 256 };
260 257
261 258
262 #endif 259 #endif
OLDNEW
« no previous file with comments | « include/core/SkImage.h ('k') | src/core/SkCanvas.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698