OLD | NEW |
1 | 1 |
2 /* | 2 /* |
3 * Copyright 2012 Google Inc. | 3 * Copyright 2012 Google Inc. |
4 * | 4 * |
5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
7 */ | 7 */ |
8 | 8 |
9 #ifndef GrGLPath_DEFINED | 9 #ifndef GrGLPath_DEFINED |
10 #define GrGLPath_DEFINED | 10 #define GrGLPath_DEFINED |
11 | 11 |
12 #include "../GrPath.h" | 12 #include "../GrPath.h" |
13 #include "gl/GrGLFunctions.h" | 13 #include "gl/GrGLFunctions.h" |
14 | 14 |
15 class GrGpuGL; | 15 class GrGpuGL; |
16 struct GrGLInterface; | |
17 | 16 |
18 /** | 17 /** |
19 * Currently this represents a path built using GL_NV_path_rendering. If we | 18 * Currently this represents a path built using GL_NV_path_rendering. If we |
20 * support other GL path extensions then this would have to have a type enum | 19 * support other GL path extensions then this would have to have a type enum |
21 * and/or be subclassed. | 20 * and/or be subclassed. |
22 */ | 21 */ |
23 | 22 |
24 class GrGLPath : public GrPath { | 23 class GrGLPath : public GrPath { |
25 public: | 24 public: |
26 static void InitPathObject(const GrGLInterface*, | 25 static void InitPathObject(GrGpuGL*, |
27 GrGLuint pathID, | 26 GrGLuint pathID, |
28 const SkPath&, | 27 const SkPath&, |
29 const SkStrokeRec&); | 28 const SkStrokeRec&); |
30 | 29 |
31 GrGLPath(GrGpuGL* gpu, const SkPath& path, const SkStrokeRec& stroke); | 30 GrGLPath(GrGpuGL* gpu, const SkPath& path, const SkStrokeRec& stroke); |
32 virtual ~GrGLPath(); | 31 virtual ~GrGLPath(); |
33 GrGLuint pathID() const { return fPathID; } | 32 GrGLuint pathID() const { return fPathID; } |
34 // TODO: Figure out how to get an approximate size of the path in Gpu | 33 // TODO: Figure out how to get an approximate size of the path in Gpu |
35 // memory. | 34 // memory. |
36 virtual size_t gpuMemorySize() const SK_OVERRIDE { return 100; } | 35 virtual size_t gpuMemorySize() const SK_OVERRIDE { return 100; } |
37 | 36 |
38 protected: | 37 protected: |
39 virtual void onRelease() SK_OVERRIDE; | 38 virtual void onRelease() SK_OVERRIDE; |
40 virtual void onAbandon() SK_OVERRIDE; | 39 virtual void onAbandon() SK_OVERRIDE; |
41 | 40 |
42 private: | 41 private: |
43 GrGLuint fPathID; | 42 GrGLuint fPathID; |
44 | 43 |
45 typedef GrPath INHERITED; | 44 typedef GrPath INHERITED; |
46 }; | 45 }; |
47 | 46 |
48 #endif | 47 #endif |
OLD | NEW |