Chromium Code Reviews

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

Issue 134163010: Refactor read and write buffers. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: original write flags were fine Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
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 15 matching lines...)
26 26
27 /** Turn the path into a mask, respecting the specified local->device matrix . 27 /** Turn the path into a mask, respecting the specified local->device matrix .
28 */ 28 */
29 bool rasterize(const SkPath& path, const SkMatrix& matrix, 29 bool rasterize(const SkPath& path, const SkMatrix& matrix,
30 const SkIRect* clipBounds, SkMaskFilter* filter, 30 const SkIRect* clipBounds, SkMaskFilter* filter,
31 SkMask* mask, SkMask::CreateMode mode) const; 31 SkMask* mask, SkMask::CreateMode mode) const;
32 32
33 SK_DEFINE_FLATTENABLE_TYPE(SkRasterizer) 33 SK_DEFINE_FLATTENABLE_TYPE(SkRasterizer)
34 34
35 protected: 35 protected:
36 SkRasterizer(SkFlattenableReadBuffer& buffer) : INHERITED(buffer) {} 36 SkRasterizer(SkReadBuffer& buffer) : INHERITED(buffer) {}
37 37
38 virtual bool onRasterize(const SkPath& path, const SkMatrix& matrix, 38 virtual bool onRasterize(const SkPath& path, const SkMatrix& matrix,
39 const SkIRect* clipBounds, 39 const SkIRect* clipBounds,
40 SkMask* mask, SkMask::CreateMode mode) const; 40 SkMask* mask, SkMask::CreateMode mode) const;
41 41
42 private: 42 private:
43 typedef SkFlattenable INHERITED; 43 typedef SkFlattenable INHERITED;
44 }; 44 };
45 45
46 #endif 46 #endif
OLDNEW

Powered by Google App Engine