OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #ifndef GrGLPath_DEFINED | 8 #ifndef GrGLPath_DEFINED |
9 #define GrGLPath_DEFINED | 9 #define GrGLPath_DEFINED |
10 | 10 |
(...skipping 22 matching lines...) Expand all Loading... |
33 | 33 |
34 | 34 |
35 GrGLPath(GrGLGpu* gpu, const SkPath& path, const GrStrokeInfo& stroke); | 35 GrGLPath(GrGLGpu* gpu, const SkPath& path, const GrStrokeInfo& stroke); |
36 GrGLuint pathID() const { return fPathID; } | 36 GrGLuint pathID() const { return fPathID; } |
37 | 37 |
38 bool shouldStroke() const { return fShouldStroke; } | 38 bool shouldStroke() const { return fShouldStroke; } |
39 bool shouldFill() const { return fShouldFill; } | 39 bool shouldFill() const { return fShouldFill; } |
40 protected: | 40 protected: |
41 void onRelease() override; | 41 void onRelease() override; |
42 void onAbandon() override; | 42 void onAbandon() override; |
43 | |
44 private: | 43 private: |
45 // TODO: Figure out how to get an approximate size of the path in Gpu memory
. | 44 // TODO: Figure out how to get an approximate size of the path in Gpu memory
. |
46 size_t onGpuMemorySize() const override { return 100; } | 45 size_t onGpuMemorySize() const override { return 100; } |
47 | 46 |
48 GrGLuint fPathID; | 47 GrGLuint fPathID; |
49 bool fShouldStroke; | 48 bool fShouldStroke; |
50 bool fShouldFill; | 49 bool fShouldFill; |
51 | 50 |
52 typedef GrPath INHERITED; | 51 typedef GrPath INHERITED; |
53 }; | 52 }; |
54 | 53 |
55 #endif | 54 #endif |
OLD | NEW |