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

Side by Side Diff: include/core/SkPicture.h

Issue 143883006: No deduping dictionaries for matrices and regions. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: bump picture version Created 6 years, 11 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/SkPathRef.h ('k') | src/core/SkPath.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 /* 2 /*
3 * Copyright 2007 The Android Open Source Project 3 * Copyright 2007 The Android Open Source Project
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 9
10 #ifndef SkPicture_DEFINED 10 #ifndef SkPicture_DEFINED
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 // V10: add drawRRect, drawOval, clipRRect 215 // V10: add drawRRect, drawOval, clipRRect
216 // V11: modify how readBitmap and writeBitmap store their info. 216 // V11: modify how readBitmap and writeBitmap store their info.
217 // V12: add conics to SkPath, use new SkPathRef flattening 217 // V12: add conics to SkPath, use new SkPathRef flattening
218 // V13: add flag to drawBitmapRectToRect 218 // V13: add flag to drawBitmapRectToRect
219 // parameterize blurs by sigma rather than radius 219 // parameterize blurs by sigma rather than radius
220 // V14: Add flags word to PathRef serialization 220 // V14: Add flags word to PathRef serialization
221 // V15: Remove A1 bitmpa config (and renumber remaining configs) 221 // V15: Remove A1 bitmpa config (and renumber remaining configs)
222 // V16: Move SkPath's isOval flag to SkPathRef 222 // V16: Move SkPath's isOval flag to SkPathRef
223 // V17: SkPixelRef now writes SkImageInfo 223 // V17: SkPixelRef now writes SkImageInfo
224 // V18: SkBitmap now records x,y for its pixelref origin, instead of offset. 224 // V18: SkBitmap now records x,y for its pixelref origin, instead of offset.
225 #ifndef DELETE_THIS_CODE_WHEN_SKPS_ARE_REBUILT_AT_V16_AND_ALL_OTHER_INSTANCES_TO O 225 // V19: encode matrices and regions into the ops stream
226 static const uint32_t PRIOR_PICTURE_VERSION = 15; // TODO: remove when .skp s regenerated 226 static const uint32_t PICTURE_VERSION = 19;
227 #endif
228 static const uint32_t PICTURE_VERSION = 18;
229 227
230 // fPlayback, fRecord, fWidth & fHeight are protected to allow derived class es to 228 // fPlayback, fRecord, fWidth & fHeight are protected to allow derived class es to
231 // install their own SkPicturePlayback-derived players,SkPictureRecord-deriv ed 229 // install their own SkPicturePlayback-derived players,SkPictureRecord-deriv ed
232 // recorders and set the picture size 230 // recorders and set the picture size
233 SkPicturePlayback* fPlayback; 231 SkPicturePlayback* fPlayback;
234 SkPictureRecord* fRecord; 232 SkPictureRecord* fRecord;
235 int fWidth, fHeight; 233 int fWidth, fHeight;
236 234
237 // Create a new SkPicture from an existing SkPicturePlayback. Ref count of 235 // Create a new SkPicture from an existing SkPicturePlayback. Ref count of
238 // playback is unchanged. 236 // playback is unchanged.
(...skipping 27 matching lines...) Expand all
266 */ 264 */
267 class SK_API SkDrawPictureCallback { 265 class SK_API SkDrawPictureCallback {
268 public: 266 public:
269 SkDrawPictureCallback() {} 267 SkDrawPictureCallback() {}
270 virtual ~SkDrawPictureCallback() {} 268 virtual ~SkDrawPictureCallback() {}
271 269
272 virtual bool abortDrawing() = 0; 270 virtual bool abortDrawing() = 0;
273 }; 271 };
274 272
275 #endif 273 #endif
OLDNEW
« no previous file with comments | « include/core/SkPathRef.h ('k') | src/core/SkPath.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698