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

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

Issue 787073003: Adding an option for pixelated rendering in SkPictureImageFilter (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: filter level Created 6 years 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
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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 (last version to record CLEAR) 248 // V37: Added shadow only option to SkDropShadowImageFilter (last version to record CLEAR)
249 // V37: Added PictureResolution and FilterLevel options to SkPictureImageFil ter 249 // V38: Added PictureResolution option to SkPictureImageFilter
250 // V39: Added FilterLevel option to SkPictureImageFilter
250 251
251 // Note: If the picture version needs to be increased then please follow the 252 // 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 253 // steps to generate new SKPs in (only accessible to Googlers): http://goo.g l/qATVcw
253 254
254 // Only SKPs within the min/current picture version range (inclusive) can be read. 255 // 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. 256 static const uint32_t MIN_PICTURE_VERSION = 35; // Produced by Chrome M3 9.
256 static const uint32_t CURRENT_PICTURE_VERSION = 38; 257 static const uint32_t CURRENT_PICTURE_VERSION = 39;
257 258
258 void createHeader(SkPictInfo* info) const; 259 void createHeader(SkPictInfo* info) const;
259 static bool IsValidPictInfo(const SkPictInfo& info); 260 static bool IsValidPictInfo(const SkPictInfo& info);
260 261
261 // Takes ownership of the SkRecord and (optional) SnapshotArray, refs the (o ptional) BBH. 262 // Takes ownership of the SkRecord and (optional) SnapshotArray, refs the (o ptional) BBH.
262 SkPicture(const SkRect& cullRect, SkRecord*, SnapshotArray*, SkBBoxHierarchy *); 263 SkPicture(const SkRect& cullRect, SkRecord*, SnapshotArray*, SkBBoxHierarchy *);
263 264
264 static SkPicture* Forwardport(const SkPictInfo&, const SkPictureData*); 265 static SkPicture* Forwardport(const SkPictInfo&, const SkPictureData*);
265 static SkPictureData* Backport(const SkRecord&, const SkPictInfo&, 266 static SkPictureData* Backport(const SkRecord&, const SkPictInfo&,
266 SkPicture const* const drawablePics[], int dr awableCount); 267 SkPicture const* const drawablePics[], int dr awableCount);
(...skipping 30 matching lines...) Expand all
297 298
298 friend class SkPictureRecorder; // SkRecord-based constructor. 299 friend class SkPictureRecorder; // SkRecord-based constructor.
299 friend class GrLayerHoister; // access to fRecord 300 friend class GrLayerHoister; // access to fRecord
300 friend class ReplaceDraw; 301 friend class ReplaceDraw;
301 friend class SkPictureUtils; 302 friend class SkPictureUtils;
302 friend class SkRecordedDrawable; 303 friend class SkRecordedDrawable;
303 }; 304 };
304 SK_COMPILE_ASSERT(sizeof(SkPicture) <= 96, SkPictureSize); 305 SK_COMPILE_ASSERT(sizeof(SkPicture) <= 96, SkPictureSize);
305 306
306 #endif 307 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698