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" |
bsalomon | 2fc11d3 | 2015-10-19 09:03:23 -0700 | [diff] [blame^] | 13 | #include "gl/GrGLTypes.h" |
bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 14 | |
bsalomon | 861e103 | 2014-12-16 07:33:49 -0800 | [diff] [blame] | 15 | class GrGLGpu; |
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: |
bsalomon | 861e103 | 2014-12-16 07:33:49 -0800 | [diff] [blame] | 25 | static void InitPathObject(GrGLGpu*, |
bungeman | af13c7c | 2014-08-06 11:14:31 -0400 | [diff] [blame] | 26 | GrGLuint pathID, |
| 27 | const SkPath&, |
kkinnunen | 50b58e6 | 2015-05-18 23:02:07 -0700 | [diff] [blame] | 28 | const GrStrokeInfo&); |
cdalton | b85a0aa | 2014-07-21 15:32:44 -0700 | [diff] [blame] | 29 | |
kkinnunen | 50b58e6 | 2015-05-18 23:02:07 -0700 | [diff] [blame] | 30 | GrGLPath(GrGLGpu* gpu, const SkPath& path, const GrStrokeInfo& stroke); |
bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 31 | GrGLuint pathID() const { return fPathID; } |
bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 32 | |
kkinnunen | 50b58e6 | 2015-05-18 23:02:07 -0700 | [diff] [blame] | 33 | bool shouldStroke() const { return fShouldStroke; } |
| 34 | bool shouldFill() const { return fShouldFill; } |
bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 35 | protected: |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 36 | void onRelease() override; |
| 37 | void onAbandon() override; |
bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 38 | |
| 39 | private: |
bsalomon | 69ed47f | 2014-11-12 11:13:39 -0800 | [diff] [blame] | 40 | // TODO: Figure out how to get an approximate size of the path in Gpu memory. |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 41 | size_t onGpuMemorySize() const override { return 100; } |
bsalomon | 69ed47f | 2014-11-12 11:13:39 -0800 | [diff] [blame] | 42 | |
bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 43 | GrGLuint fPathID; |
kkinnunen | 50b58e6 | 2015-05-18 23:02:07 -0700 | [diff] [blame] | 44 | bool fShouldStroke; |
| 45 | bool fShouldFill; |
bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 46 | |
| 47 | typedef GrPath INHERITED; |
| 48 | }; |
| 49 | |
| 50 | #endif |