blob: 531111827038791fcf152d88fbfb619e4b7b5974 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/*
* Copyright 2013 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SkCanvasStack_DEFINED
#define SkCanvasStack_DEFINED
#include "SkNWayCanvas.h"
#include "SkTArray.h"
class SkCanvasStack : public SkNWayCanvas {
public:
SkCanvasStack(int width, int height);
virtual ~SkCanvasStack();
void pushCanvas(SkCanvas* canvas, const SkIPoint& origin);
virtual void removeAll() SK_OVERRIDE;
/*
* The following add/remove canvas methods are overrides from SkNWayCanvas
* that do not make sense in the context of our CanvasStack, but since we
* can share most of the other implementation of NWay we override those
* methods to be no-ops.
*/
virtual void addCanvas(SkCanvas*) SK_OVERRIDE { SkDEBUGFAIL("Invalid Op"); }
virtual void removeCanvas(SkCanvas*) SK_OVERRIDE { SkDEBUGFAIL("Invalid Op"); }
virtual void setMatrix(const SkMatrix& matrix) SK_OVERRIDE;
virtual bool clipRect(const SkRect&, SkRegion::Op, bool) SK_OVERRIDE;
virtual bool clipRRect(const SkRRect&, SkRegion::Op, bool) SK_OVERRIDE;
virtual bool clipPath(const SkPath&, SkRegion::Op, bool) SK_OVERRIDE;
virtual bool clipRegion(const SkRegion& deviceRgn,
SkRegion::Op) SK_OVERRIDE;
private:
void clipToZOrderedBounds();
struct CanvasData {
SkIPoint origin;
SkRegion requiredClip;
};
SkTArray<CanvasData> fCanvasData;
typedef SkNWayCanvas INHERITED;
};
#endif
|