| 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/GrGLTypes.h" |
| 14 | 14 |
| 15 class GrGLGpu; | 15 class GrGLGpu; |
| 16 | 16 |
| 17 /** | 17 /** |
| 18 * 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 |
| 19 * 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 |
| 20 * and/or be subclassed. | 20 * and/or be subclassed. |
| 21 */ | 21 */ |
| 22 | 22 |
| 23 class GrGLPath : public GrPath { | 23 class GrGLPath : public GrPath { |
| (...skipping 17 matching lines...) Expand all Loading... |
| 41 size_t onGpuMemorySize() const override { return 100; } | 41 size_t onGpuMemorySize() const override { return 100; } |
| 42 | 42 |
| 43 GrGLuint fPathID; | 43 GrGLuint fPathID; |
| 44 bool fShouldStroke; | 44 bool fShouldStroke; |
| 45 bool fShouldFill; | 45 bool fShouldFill; |
| 46 | 46 |
| 47 typedef GrPath INHERITED; | 47 typedef GrPath INHERITED; |
| 48 }; | 48 }; |
| 49 | 49 |
| 50 #endif | 50 #endif |
| OLD | NEW |