blob: fc21a7cd18884d72efcf3bbe95b5245dc408fa21 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@android.com8a1c16f2008-12-17 15:59:43 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2006 The Android Open Source Project
reed@android.com8a1c16f2008-12-17 15:59:43 +00004 *
epoger@google.comec3ed6a2011-07-28 14:26:00 +00005 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
reed@android.com8a1c16f2008-12-17 15:59:43 +00007 */
8
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
reed@android.com8a1c16f2008-12-17 15:59:43 +000010#ifndef SkLayerRasterizer_DEFINED
11#define SkLayerRasterizer_DEFINED
12
13#include "SkRasterizer.h"
14#include "SkDeque.h"
15#include "SkScalar.h"
16
17class SkPaint;
18
tfarina@chromium.org6806fe82012-10-12 14:41:39 +000019class SK_API SkLayerRasterizer : public SkRasterizer {
reed@android.com8a1c16f2008-12-17 15:59:43 +000020public:
reed@android.com8a1c16f2008-12-17 15:59:43 +000021 virtual ~SkLayerRasterizer();
rmistry@google.comfbfcd562012-08-23 18:09:54 +000022
commit-bot@chromium.orgf792a1b2014-02-26 13:27:37 +000023 class SK_API Builder {
24 public:
25 Builder();
26 ~Builder();
27
28 void addLayer(const SkPaint& paint) {
29 this->addLayer(paint, 0, 0);
30 }
31
32 /**
33 * Add a new layer (above any previous layers) to the rasterizer.
34 * The layer will extract those fields that affect the mask from
35 * the specified paint, but will not retain a reference to the paint
36 * object itself, so it may be reused without danger of side-effects.
37 */
38 void addLayer(const SkPaint& paint, SkScalar dx, SkScalar dy);
39
40 /**
41 * Pass queue of layers on to newly created layer rasterizer and return it. The builder
commit-bot@chromium.org6573ce72014-04-10 20:42:53 +000042 * *cannot* be used any more after calling this function.
43 *
44 * The caller is responsible for calling unref() on the returned object.
commit-bot@chromium.orgf792a1b2014-02-26 13:27:37 +000045 */
46 SkLayerRasterizer* detachRasterizer();
47
commit-bot@chromium.org6573ce72014-04-10 20:42:53 +000048 /**
49 * Create and return a new immutable SkLayerRasterizer that contains a shapshot of the
50 * layers that were added to the Builder, without modifying the Builder. The Builder
51 * *may* be used after calling this function. It will continue to hold any layers
52 * previously added, so consecutive calls to this function will return identical objects,
53 * and objects returned by future calls to this function contain all the layers in
54 * previously returned objects.
55 *
56 * Future calls to addLayer will not affect rasterizers previously returned by this call.
57 *
58 * The caller is responsible for calling unref() on the returned object.
59 */
60 SkLayerRasterizer* snapshotRasterizer() const;
61
commit-bot@chromium.orgf792a1b2014-02-26 13:27:37 +000062 private:
63 SkDeque* fLayers;
64 };
65
66#ifdef SK_SUPPORT_LEGACY_LAYERRASTERIZER_API
mike@reedtribe.org6b919c32011-04-20 11:17:30 +000067 void addLayer(const SkPaint& paint) {
reed@android.com8a1c16f2008-12-17 15:59:43 +000068 this->addLayer(paint, 0, 0);
69 }
70
rmistry@google.comfbfcd562012-08-23 18:09:54 +000071 /** Add a new layer (above any previous layers) to the rasterizer.
72 The layer will extract those fields that affect the mask from
73 the specified paint, but will not retain a reference to the paint
74 object itself, so it may be reused without danger of side-effects.
75 */
reed@android.com8a1c16f2008-12-17 15:59:43 +000076 void addLayer(const SkPaint& paint, SkScalar dx, SkScalar dy);
commit-bot@chromium.orgf792a1b2014-02-26 13:27:37 +000077#endif
reed@android.com8a1c16f2008-12-17 15:59:43 +000078
djsollen@google.comba28d032012-03-26 17:57:35 +000079 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkLayerRasterizer)
reed@google.com43e9f202011-08-09 19:01:50 +000080
reed@android.com8a1c16f2008-12-17 15:59:43 +000081protected:
commit-bot@chromium.orgf792a1b2014-02-26 13:27:37 +000082 SkLayerRasterizer(SkDeque* layers);
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000083 SkLayerRasterizer(SkReadBuffer&);
84 virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000085
86 // override from SkRasterizer
87 virtual bool onRasterize(const SkPath& path, const SkMatrix& matrix,
88 const SkIRect* clipBounds,
reed@google.comfdba4042012-12-18 16:57:03 +000089 SkMask* mask, SkMask::CreateMode mode) const;
reed@android.com8a1c16f2008-12-17 15:59:43 +000090
commit-bot@chromium.orgf792a1b2014-02-26 13:27:37 +000091#ifdef SK_SUPPORT_LEGACY_LAYERRASTERIZER_API
92public:
93#endif
94 SkLayerRasterizer();
95
reed@android.com8a1c16f2008-12-17 15:59:43 +000096private:
commit-bot@chromium.orgf792a1b2014-02-26 13:27:37 +000097#ifdef SK_SUPPORT_LEGACY_LAYERRASTERIZER_API
98 SkDeque* fLayers;
99#else
100 const SkDeque* const fLayers;
101#endif
102
103 static SkDeque* ReadLayers(SkReadBuffer& buffer);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000104
commit-bot@chromium.org6573ce72014-04-10 20:42:53 +0000105 friend class LayerRasterizerTester;
106
reed@android.com8a1c16f2008-12-17 15:59:43 +0000107 typedef SkRasterizer INHERITED;
108};
109
110#endif