blob: 7d920105a00b888cfb9581cd661855b777a5ebdd (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
/*
* Copyright 2014 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef GrGLPathRange_DEFINED
#define GrGLPathRange_DEFINED
#include "../GrPathRange.h"
#include "GrStyle.h"
#include "gl/GrGLTypes.h"
class GrGLGpu;
/**
* Currently this represents a range of GL_NV_path_rendering Path IDs. If we
* support other GL path extensions then this would have to have a type enum
* and/or be subclassed.
*/
class GrGLPathRange : public GrPathRange {
public:
/**
* Initialize a GL path range from a PathGenerator. This class will allocate
* the GPU path objects and initialize them lazily.
*/
GrGLPathRange(GrGLGpu*, PathGenerator*, const GrStyle&);
/**
* Initialize a GL path range from an existing range of pre-initialized GPU
* path objects. This class assumes ownership of the GPU path objects and
* will delete them when done.
*/
GrGLPathRange(GrGLGpu*,
GrGLuint basePathID,
int numPaths,
size_t gpuMemorySize,
const GrStyle&);
GrGLuint basePathID() const { return fBasePathID; }
bool shouldStroke() const { return fShouldStroke; }
bool shouldFill() const { return fShouldFill; }
protected:
void onInitPath(int index, const SkPath&) const override;
void onRelease() override;
void onAbandon() override;
private:
void init();
size_t onGpuMemorySize() const override { return fGpuMemorySize; }
const GrStyle fStyle;
GrGLuint fBasePathID;
mutable size_t fGpuMemorySize;
bool fShouldStroke;
bool fShouldFill;
typedef GrPathRange INHERITED;
};
#endif
|