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

Side by Side Diff: tools/debugger/SkDebugCanvas.h

Issue 2146073003: Creating framework for drawShadowedPicture (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: removed redundant code Created 4 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 | « src/core/SkPictureRecord.h ('k') | no next file » | 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 8
9 #ifndef SKDEBUGCANVAS_H_ 9 #ifndef SKDEBUGCANVAS_H_
10 #define SKDEBUGCANVAS_H_ 10 #define SKDEBUGCANVAS_H_
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 198
199 SaveLayerStrategy getSaveLayerStrategy(const SaveLayerRec &) override; 199 SaveLayerStrategy getSaveLayerStrategy(const SaveLayerRec &) override;
200 200
201 void willRestore() override; 201 void willRestore() override;
202 202
203 void didConcat(const SkMatrix &) override; 203 void didConcat(const SkMatrix &) override;
204 204
205 void didSetMatrix(const SkMatrix &) override; 205 void didSetMatrix(const SkMatrix &) override;
206 206
207 #ifdef SK_EXPERIMENTAL_SHADOWING 207 #ifdef SK_EXPERIMENTAL_SHADOWING
208 void didTranslateZ(SkScalar) override; 208 void didTranslateZ(SkScalar) override;
209 #else 209 #else
210 void didTranslateZ(SkScalar); 210 void didTranslateZ(SkScalar);
211 #endif 211 #endif
212 212
213 void onDrawAnnotation(const SkRect&, const char[], SkData*) override; 213 void onDrawAnnotation(const SkRect&, const char[], SkData*) override;
214 void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) override; 214 void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) override;
215 void onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y, 215 void onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y,
216 const SkPaint&) override; 216 const SkPaint&) override;
217 void onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[], 217 void onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[],
218 const SkPaint&) override; 218 const SkPaint&) override;
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 GrAuditTrail* getAuditTrail(SkCanvas*); 318 GrAuditTrail* getAuditTrail(SkCanvas*);
319 319
320 void updatePaintFilterCanvas(); 320 void updatePaintFilterCanvas();
321 void drawAndCollectBatches(int n, SkCanvas*); 321 void drawAndCollectBatches(int n, SkCanvas*);
322 void cleanupAuditTrail(SkCanvas*); 322 void cleanupAuditTrail(SkCanvas*);
323 323
324 typedef SkCanvas INHERITED; 324 typedef SkCanvas INHERITED;
325 }; 325 };
326 326
327 #endif 327 #endif
OLDNEW
« no previous file with comments | « src/core/SkPictureRecord.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698