blob: c6ac1de36309c75e2af34265a29d168746a2dfe0 [file] [log] [blame]
reed9f014712014-06-18 15:51:20 -07001
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
reed9f014712014-06-18 15:51:20 -07009
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
scroggo65044bf2014-06-03 13:12:51 -070042 * *cannot* be used any more after calling this function. If no layers have been added,
43 * returns NULL.
commit-bot@chromium.org6573ce72014-04-10 20:42:53 +000044 *
scroggo65044bf2014-06-03 13:12:51 -070045 * The caller is responsible for calling unref() on the returned object, if non NULL.
commit-bot@chromium.orgf792a1b2014-02-26 13:27:37 +000046 */
47 SkLayerRasterizer* detachRasterizer();
48
commit-bot@chromium.org6573ce72014-04-10 20:42:53 +000049 /**
50 * Create and return a new immutable SkLayerRasterizer that contains a shapshot of the
51 * layers that were added to the Builder, without modifying the Builder. The Builder
52 * *may* be used after calling this function. It will continue to hold any layers
53 * previously added, so consecutive calls to this function will return identical objects,
54 * and objects returned by future calls to this function contain all the layers in
scroggo65044bf2014-06-03 13:12:51 -070055 * previously returned objects. If no layers have been added, returns NULL.
commit-bot@chromium.org6573ce72014-04-10 20:42:53 +000056 *
57 * Future calls to addLayer will not affect rasterizers previously returned by this call.
58 *
scroggo65044bf2014-06-03 13:12:51 -070059 * The caller is responsible for calling unref() on the returned object, if non NULL.
commit-bot@chromium.org6573ce72014-04-10 20:42:53 +000060 */
61 SkLayerRasterizer* snapshotRasterizer() const;
62
commit-bot@chromium.orgf792a1b2014-02-26 13:27:37 +000063 private:
64 SkDeque* fLayers;
65 };
66
djsollen@google.comba28d032012-03-26 17:57:35 +000067 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkLayerRasterizer)
reed@google.com43e9f202011-08-09 19:01:50 +000068
reed@android.com8a1c16f2008-12-17 15:59:43 +000069protected:
dominikg1bd6f7d2014-07-21 02:43:20 -070070 SkLayerRasterizer();
reed9f014712014-06-18 15:51:20 -070071 SkLayerRasterizer(SkDeque* layers);
mtklein36352bf2015-03-25 18:17:31 -070072 void flatten(SkWriteBuffer&) const override;
reed@android.com8a1c16f2008-12-17 15:59:43 +000073
74 // override from SkRasterizer
75 virtual bool onRasterize(const SkPath& path, const SkMatrix& matrix,
76 const SkIRect* clipBounds,
mtklein36352bf2015-03-25 18:17:31 -070077 SkMask* mask, SkMask::CreateMode mode) const override;
reed@android.com8a1c16f2008-12-17 15:59:43 +000078
reed9f014712014-06-18 15:51:20 -070079private:
reed9f014712014-06-18 15:51:20 -070080 const SkDeque* const fLayers;
commit-bot@chromium.orgf792a1b2014-02-26 13:27:37 +000081
82 static SkDeque* ReadLayers(SkReadBuffer& buffer);
reed@android.com8a1c16f2008-12-17 15:59:43 +000083
commit-bot@chromium.org6573ce72014-04-10 20:42:53 +000084 friend class LayerRasterizerTester;
85
reed@android.com8a1c16f2008-12-17 15:59:43 +000086 typedef SkRasterizer INHERITED;
87};
88
89#endif