| 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; |
| 16 | class SkPath; |
| commit-bot@chromium.org | 32184d8 | 2013-10-09 15:14:18 +0000 | [diff] [blame] | 17 | class SkStrokeRec; |
| bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 18 | |
| 19 | /** |
| 20 | * Currently this represents a path built using GL_NV_path_rendering. If we |
| 21 | * support other GL path extensions then this would have to have a type enum |
| 22 | * and/or be subclassed. |
| 23 | */ |
| 24 | |
| 25 | class GrGLPath : public GrPath { |
| 26 | public: |
| commit-bot@chromium.org | 32184d8 | 2013-10-09 15:14:18 +0000 | [diff] [blame] | 27 | GrGLPath(GrGpuGL* gpu, const SkPath& path, const SkStrokeRec& stroke); |
| bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 28 | virtual ~GrGLPath(); |
| 29 | GrGLuint pathID() const { return fPathID; } |
| rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 30 | // TODO: Figure out how to get an approximate size of the path in Gpu |
| bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 31 | // memory. |
| 32 | virtual size_t sizeInBytes() const SK_OVERRIDE { return 100; } |
| 33 | |
| 34 | protected: |
| 35 | virtual void onRelease() SK_OVERRIDE; |
| 36 | virtual void onAbandon() SK_OVERRIDE; |
| 37 | |
| 38 | private: |
| 39 | GrGLuint fPathID; |
| 40 | |
| 41 | typedef GrPath INHERITED; |
| 42 | }; |
| 43 | |
| 44 | #endif |