OLD | NEW |
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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 // V27: Remove SkUnitMapper from gradients (and skia). | 238 // V27: Remove SkUnitMapper from gradients (and skia). |
239 // V28: No longer call bitmap::flatten inside SkWriteBuffer::writeBitmap. | 239 // V28: No longer call bitmap::flatten inside SkWriteBuffer::writeBitmap. |
240 // V29: Removed SaveFlags parameter from save(). | 240 // V29: Removed SaveFlags parameter from save(). |
241 // V30: Remove redundant SkMatrix from SkLocalMatrixShader. | 241 // V30: Remove redundant SkMatrix from SkLocalMatrixShader. |
242 // V31: Add a serialized UniqueID to SkImageFilter. | 242 // V31: Add a serialized UniqueID to SkImageFilter. |
243 // V32: Removed SkPaintOptionsAndroid from SkPaint | 243 // V32: Removed SkPaintOptionsAndroid from SkPaint |
244 // V33: Serialize only public API of effects. | 244 // V33: Serialize only public API of effects. |
245 // V34: Add SkTextBlob serialization. | 245 // V34: Add SkTextBlob serialization. |
246 // V35: Store SkRect (rather then width & height) in header | 246 // V35: Store SkRect (rather then width & height) in header |
247 // V36: Remove (obsolete) alphatype from SkColorTable | 247 // V36: Remove (obsolete) alphatype from SkColorTable |
248 // V37: Added shadow only option to SkDropShadowImageFilter | 248 // V37: Added shadow only option to SkDropShadowImageFilter (last version to
record CLEAR) |
249 // Added PictureResolution and FilterLevel options to SkPictureImageFil
ter | 249 // V37: Added PictureResolution and FilterLevel options to SkPictureImageFil
ter |
250 | 250 |
251 // Note: If the picture version needs to be increased then please follow the | 251 // Note: If the picture version needs to be increased then please follow the |
252 // steps to generate new SKPs in (only accessible to Googlers): http://goo.g
l/qATVcw | 252 // steps to generate new SKPs in (only accessible to Googlers): http://goo.g
l/qATVcw |
253 | 253 |
254 // Only SKPs within the min/current picture version range (inclusive) can be
read. | 254 // Only SKPs within the min/current picture version range (inclusive) can be
read. |
255 static const uint32_t MIN_PICTURE_VERSION = 35; // Produced by Chrome M3
9. | 255 static const uint32_t MIN_PICTURE_VERSION = 35; // Produced by Chrome M3
9. |
256 static const uint32_t CURRENT_PICTURE_VERSION = 38; | 256 static const uint32_t CURRENT_PICTURE_VERSION = 38; |
257 | 257 |
258 void createHeader(SkPictInfo* info) const; | 258 void createHeader(SkPictInfo* info) const; |
259 static bool IsValidPictInfo(const SkPictInfo& info); | 259 static bool IsValidPictInfo(const SkPictInfo& info); |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 | 297 |
298 friend class SkPictureRecorder; // SkRecord-based constructor. | 298 friend class SkPictureRecorder; // SkRecord-based constructor. |
299 friend class GrLayerHoister; // access to fRecord | 299 friend class GrLayerHoister; // access to fRecord |
300 friend class ReplaceDraw; | 300 friend class ReplaceDraw; |
301 friend class SkPictureUtils; | 301 friend class SkPictureUtils; |
302 friend class SkRecordedDrawable; | 302 friend class SkRecordedDrawable; |
303 }; | 303 }; |
304 SK_COMPILE_ASSERT(sizeof(SkPicture) <= 96, SkPictureSize); | 304 SK_COMPILE_ASSERT(sizeof(SkPicture) <= 96, SkPictureSize); |
305 | 305 |
306 #endif | 306 #endif |
OLD | NEW |