bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * Copyright 2012 Google Inc. |
| 4 | * |
| 5 | * Use of this source code is governed by a BSD-style license that can be |
| 6 | * found in the LICENSE file. |
| 7 | */ |
| 8 | |
| 9 | #ifndef GrGLPath_DEFINED |
| 10 | #define GrGLPath_DEFINED |
| 11 | |
| 12 | #include "../GrPath.h" |
| 13 | #include "gl/GrGLFunctions.h" |
| 14 | |
| 15 | class GrGpuGL; |
bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 16 | |
| 17 | /** |
| 18 | * Currently this represents a path built using GL_NV_path_rendering. If we |
| 19 | * support other GL path extensions then this would have to have a type enum |
| 20 | * and/or be subclassed. |
| 21 | */ |
| 22 | |
| 23 | class GrGLPath : public GrPath { |
| 24 | public: |
cdalton | c7103a1 | 2014-08-11 14:05:05 -0700 | [diff] [blame] | 25 | static void InitPathObject(GrGpuGL*, |
bungeman | af13c7c | 2014-08-06 11:14:31 -0400 | [diff] [blame] | 26 | GrGLuint pathID, |
| 27 | const SkPath&, |
| 28 | const SkStrokeRec&); |
cdalton | b85a0aa | 2014-07-21 15:32:44 -0700 | [diff] [blame] | 29 | |
commit-bot@chromium.org | 32184d8 | 2013-10-09 15:14:18 +0000 | [diff] [blame] | 30 | GrGLPath(GrGpuGL* gpu, const SkPath& path, const SkStrokeRec& stroke); |
bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 31 | virtual ~GrGLPath(); |
| 32 | GrGLuint pathID() const { return fPathID; } |
bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 33 | |
| 34 | protected: |
| 35 | virtual void onRelease() SK_OVERRIDE; |
| 36 | virtual void onAbandon() SK_OVERRIDE; |
| 37 | |
| 38 | private: |
bsalomon | 69ed47f | 2014-11-12 11:13:39 -0800 | [diff] [blame^] | 39 | // TODO: Figure out how to get an approximate size of the path in Gpu memory. |
| 40 | virtual size_t onGpuMemorySize() const SK_OVERRIDE { return 100; } |
| 41 | |
bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 42 | GrGLuint fPathID; |
bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 43 | |
| 44 | typedef GrPath INHERITED; |
| 45 | }; |
| 46 | |
| 47 | #endif |