| * Copyright 2006 The Android Open Source Project |
| * Use of this source code is governed by a BSD-style license that can be |
| * found in the LICENSE file. |
| #ifndef SkRasterizer_DEFINED |
| #define SkRasterizer_DEFINED |
| #include "SkFlattenable.h" |
| class SK_API SkRasterizer : public SkFlattenable { |
| SK_DECLARE_INST_COUNT(SkRasterizer) |
| /** Turn the path into a mask, respecting the specified local->device matrix. |
| bool rasterize(const SkPath& path, const SkMatrix& matrix, |
| const SkIRect* clipBounds, SkMaskFilter* filter, |
| SkMask* mask, SkMask::CreateMode mode) const; |
| SK_DEFINE_FLATTENABLE_TYPE(SkRasterizer) |
| #ifdef SK_SUPPORT_LEGACY_DEEPFLATTENING |
| SkRasterizer(SkReadBuffer& buffer) : INHERITED(buffer) {} |
| virtual bool onRasterize(const SkPath& path, const SkMatrix& matrix, |
| const SkIRect* clipBounds, |
| SkMask* mask, SkMask::CreateMode mode) const; |
| typedef SkFlattenable INHERITED; |