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

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

Issue 23021015: Initial error handling code (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Adapting code to sk_once changes Created 7 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « include/core/SkPixelRef.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 12 matching lines...) Expand all
23 SK_DECLARE_INST_COUNT(SkRasterizer) 23 SK_DECLARE_INST_COUNT(SkRasterizer)
24 24
25 SkRasterizer() {} 25 SkRasterizer() {}
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)
34
33 protected: 35 protected:
34 SkRasterizer(SkFlattenableReadBuffer& buffer) : INHERITED(buffer) {} 36 SkRasterizer(SkFlattenableReadBuffer& buffer) : INHERITED(buffer) {}
35 37
36 virtual bool onRasterize(const SkPath& path, const SkMatrix& matrix, 38 virtual bool onRasterize(const SkPath& path, const SkMatrix& matrix,
37 const SkIRect* clipBounds, 39 const SkIRect* clipBounds,
38 SkMask* mask, SkMask::CreateMode mode) const; 40 SkMask* mask, SkMask::CreateMode mode) const;
39 41
40 private: 42 private:
41 typedef SkFlattenable INHERITED; 43 typedef SkFlattenable INHERITED;
42 }; 44 };
43 45
44 #endif 46 #endif
OLDNEW
« no previous file with comments | « include/core/SkPixelRef.h ('k') | include/core/SkShader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698