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

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

Issue 424663006: SkCanvas interface for drawing a patch. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fixed implicit casting in patch.cpp Created 6 years, 4 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/SkPatch.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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 virtual void drawBitmapNine(const SkBitmap& bitmap, const SkIRect& center, 161 virtual void drawBitmapNine(const SkBitmap& bitmap, const SkIRect& center,
162 const SkRect& dst, const SkPaint* paint) 162 const SkRect& dst, const SkPaint* paint)
163 SK_OVERRIDE; 163 SK_OVERRIDE;
164 virtual void drawSprite(const SkBitmap& bitmap, int left, int top, 164 virtual void drawSprite(const SkBitmap& bitmap, int left, int top,
165 const SkPaint* paint) SK_OVERRIDE; 165 const SkPaint* paint) SK_OVERRIDE;
166 virtual void drawVertices(VertexMode vmode, int vertexCount, 166 virtual void drawVertices(VertexMode vmode, int vertexCount,
167 const SkPoint vertices[], const SkPoint texs[], 167 const SkPoint vertices[], const SkPoint texs[],
168 const SkColor colors[], SkXfermode* xmode, 168 const SkColor colors[], SkXfermode* xmode,
169 const uint16_t indices[], int indexCount, 169 const uint16_t indices[], int indexCount,
170 const SkPaint& paint) SK_OVERRIDE; 170 const SkPaint& paint) SK_OVERRIDE;
171 virtual void drawPatch(const SkPatch& patch, const SkPaint& paint) SK_OVERRI DE;
171 virtual SkDrawFilter* setDrawFilter(SkDrawFilter* filter) SK_OVERRIDE; 172 virtual SkDrawFilter* setDrawFilter(SkDrawFilter* filter) SK_OVERRIDE;
172 173
173 protected: 174 protected:
174 virtual void willSave() SK_OVERRIDE; 175 virtual void willSave() SK_OVERRIDE;
175 virtual SaveLayerStrategy willSaveLayer(const SkRect*, const SkPaint*, SaveF lags) SK_OVERRIDE; 176 virtual SaveLayerStrategy willSaveLayer(const SkRect*, const SkPaint*, SaveF lags) SK_OVERRIDE;
176 virtual void willRestore() SK_OVERRIDE; 177 virtual void willRestore() SK_OVERRIDE;
177 178
178 virtual void didConcat(const SkMatrix&) SK_OVERRIDE; 179 virtual void didConcat(const SkMatrix&) SK_OVERRIDE;
179 virtual void didSetMatrix(const SkMatrix&) SK_OVERRIDE; 180 virtual void didSetMatrix(const SkMatrix&) SK_OVERRIDE;
180 181
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 245
245 size_t fBitmapSizeThreshold; 246 size_t fBitmapSizeThreshold;
246 bool fDeferredDrawing; 247 bool fDeferredDrawing;
247 248
248 friend class SkDeferredCanvasTester; // for unit testing 249 friend class SkDeferredCanvasTester; // for unit testing
249 typedef SkCanvas INHERITED; 250 typedef SkCanvas INHERITED;
250 }; 251 };
251 252
252 253
253 #endif 254 #endif
OLDNEW
« no previous file with comments | « include/core/SkPatch.h ('k') | src/core/SkCanvas.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698