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

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

Issue 395603002: Simplify flattening to just write enough to call the factory (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 6 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 | « include/core/SkPicture.h ('k') | include/core/SkShader.h » ('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 2006 The Android Open Source Project 3 * Copyright 2006 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 SkRasterizer_DEFINED 10 #ifndef SkRasterizer_DEFINED
(...skipping 14 matching lines...) Expand all
25 /** Turn the path into a mask, respecting the specified local->device matrix . 25 /** Turn the path into a mask, respecting the specified local->device matrix .
26 */ 26 */
27 bool rasterize(const SkPath& path, const SkMatrix& matrix, 27 bool rasterize(const SkPath& path, const SkMatrix& matrix,
28 const SkIRect* clipBounds, SkMaskFilter* filter, 28 const SkIRect* clipBounds, SkMaskFilter* filter,
29 SkMask* mask, SkMask::CreateMode mode) const; 29 SkMask* mask, SkMask::CreateMode mode) const;
30 30
31 SK_DEFINE_FLATTENABLE_TYPE(SkRasterizer) 31 SK_DEFINE_FLATTENABLE_TYPE(SkRasterizer)
32 32
33 protected: 33 protected:
34 SkRasterizer() {} 34 SkRasterizer() {}
35 #ifdef SK_SUPPORT_LEGACY_DEEPFLATTENING
35 SkRasterizer(SkReadBuffer& buffer) : INHERITED(buffer) {} 36 SkRasterizer(SkReadBuffer& buffer) : INHERITED(buffer) {}
37 #endif
36 38
37 virtual bool onRasterize(const SkPath& path, const SkMatrix& matrix, 39 virtual bool onRasterize(const SkPath& path, const SkMatrix& matrix,
38 const SkIRect* clipBounds, 40 const SkIRect* clipBounds,
39 SkMask* mask, SkMask::CreateMode mode) const; 41 SkMask* mask, SkMask::CreateMode mode) const;
40 42
41 private: 43 private:
42 typedef SkFlattenable INHERITED; 44 typedef SkFlattenable INHERITED;
43 }; 45 };
44 46
45 #endif 47 #endif
OLDNEW
« no previous file with comments | « include/core/SkPicture.h ('k') | include/core/SkShader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698