blob: d324e6a74556e7b4510ac67f6c9d1b7375e64183 (
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
|
/*
* Copyright 2012 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef GrPath_DEFINED
#define GrPath_DEFINED
#include "GrGpuObject.h"
#include "GrResourceCache.h"
#include "SkPath.h"
#include "SkRect.h"
#include "SkStrokeRec.h"
class GrPath : public GrGpuObject {
public:
SK_DECLARE_INST_COUNT(GrPath);
GrPath(GrGpu* gpu, bool isWrapped, const SkPath& skPath, const SkStrokeRec& stroke)
: INHERITED(gpu, isWrapped),
fSkPath(skPath),
fStroke(stroke),
fBounds(skPath.getBounds()) {
}
static GrResourceKey ComputeKey(const SkPath& path, const SkStrokeRec& stroke);
bool isEqualTo(const SkPath& path, const SkStrokeRec& stroke) {
return fSkPath == path && fStroke == stroke;
}
const SkRect& getBounds() const { return fBounds; }
const SkStrokeRec& getStroke() const { return fStroke; }
protected:
SkPath fSkPath;
SkStrokeRec fStroke;
SkRect fBounds;
private:
typedef GrGpuObject INHERITED;
};
#endif
|