| 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 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 public: | 24 public: |
| 25 static void InitPathObject(GrGLGpu*, | 25 static void InitPathObject(GrGLGpu*, |
| 26 GrGLuint pathID, | 26 GrGLuint pathID, |
| 27 const SkPath&, | 27 const SkPath&, |
| 28 const SkStrokeRec&); | 28 const SkStrokeRec&); |
| 29 | 29 |
| 30 GrGLPath(GrGLGpu* gpu, const SkPath& path, const SkStrokeRec& stroke); | 30 GrGLPath(GrGLGpu* gpu, const SkPath& path, const SkStrokeRec& stroke); |
| 31 GrGLuint pathID() const { return fPathID; } | 31 GrGLuint pathID() const { return fPathID; } |
| 32 | 32 |
| 33 protected: | 33 protected: |
| 34 virtual void onRelease() SK_OVERRIDE; | 34 void onRelease() SK_OVERRIDE; |
| 35 virtual void onAbandon() SK_OVERRIDE; | 35 void onAbandon() SK_OVERRIDE; |
| 36 | 36 |
| 37 private: | 37 private: |
| 38 // TODO: Figure out how to get an approximate size of the path in Gpu memory
. | 38 // TODO: Figure out how to get an approximate size of the path in Gpu memory
. |
| 39 virtual size_t onGpuMemorySize() const SK_OVERRIDE { return 100; } | 39 size_t onGpuMemorySize() const SK_OVERRIDE { return 100; } |
| 40 | 40 |
| 41 GrGLuint fPathID; | 41 GrGLuint fPathID; |
| 42 | 42 |
| 43 typedef GrPath INHERITED; | 43 typedef GrPath INHERITED; |
| 44 }; | 44 }; |
| 45 | 45 |
| 46 #endif | 46 #endif |
| OLD | NEW |