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

Side by Side Diff: src/core/SkRecorder.h

Issue 2255283002: Fast path translate() in SkCanvas and SkLiteDL. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: plumb translate() through to SkRecord too Created 4 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 | « src/core/SkRecordDraw.cpp ('k') | src/core/SkRecorder.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 2014 Google Inc. 2 * Copyright 2014 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 SkRecorder_DEFINED 8 #ifndef SkRecorder_DEFINED
9 #define SkRecorder_DEFINED 9 #define SkRecorder_DEFINED
10 10
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 // Make SkRecorder forget entirely about its SkRecord*; all calls to SkRecor der will fail. 53 // Make SkRecorder forget entirely about its SkRecord*; all calls to SkRecor der will fail.
54 void forgetRecord(); 54 void forgetRecord();
55 55
56 void willSave() override; 56 void willSave() override;
57 SaveLayerStrategy getSaveLayerStrategy(const SaveLayerRec&) override; 57 SaveLayerStrategy getSaveLayerStrategy(const SaveLayerRec&) override;
58 void willRestore() override {} 58 void willRestore() override {}
59 void didRestore() override; 59 void didRestore() override;
60 60
61 void didConcat(const SkMatrix&) override; 61 void didConcat(const SkMatrix&) override;
62 void didSetMatrix(const SkMatrix&) override; 62 void didSetMatrix(const SkMatrix&) override;
63 void didTranslate(SkScalar, SkScalar) override;
63 64
64 #ifdef SK_EXPERIMENTAL_SHADOWING 65 #ifdef SK_EXPERIMENTAL_SHADOWING
65 void didTranslateZ(SkScalar) override; 66 void didTranslateZ(SkScalar) override;
66 #else 67 #else
67 void didTranslateZ(SkScalar); 68 void didTranslateZ(SkScalar);
68 #endif 69 #endif
69 70
70 void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) override; 71 void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) override;
71 void onDrawDrawable(SkDrawable*, const SkMatrix*) override; 72 void onDrawDrawable(SkDrawable*, const SkMatrix*) override;
72 void onDrawText(const void* text, 73 void onDrawText(const void* text,
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 168
168 DrawPictureMode fDrawPictureMode; 169 DrawPictureMode fDrawPictureMode;
169 size_t fApproxBytesUsedBySubPictures; 170 size_t fApproxBytesUsedBySubPictures;
170 SkRecord* fRecord; 171 SkRecord* fRecord;
171 SkAutoTDelete<SkDrawableList> fDrawableList; 172 SkAutoTDelete<SkDrawableList> fDrawableList;
172 173
173 SkMiniRecorder* fMiniRecorder; 174 SkMiniRecorder* fMiniRecorder;
174 }; 175 };
175 176
176 #endif//SkRecorder_DEFINED 177 #endif//SkRecorder_DEFINED
OLDNEW
« no previous file with comments | « src/core/SkRecordDraw.cpp ('k') | src/core/SkRecorder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698