Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(390)

Side by Side Diff: src/gpu/gl/GrGLPath.h

Issue 23440049: Implement stroking a path with nv_path_rendering (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: rebase Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/gpu/GrStencilAndCoverPathRenderer.cpp ('k') | src/gpu/gl/GrGLPath.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/GrGLFunctions.h"
14 14
15 class GrGpuGL; 15 class GrGpuGL;
16 class SkPath; 16 class SkPath;
17 class SkStrokeRec;
17 18
18 /** 19 /**
19 * Currently this represents a path built using GL_NV_path_rendering. If we 20 * Currently this represents a path built using GL_NV_path_rendering. If we
20 * support other GL path extensions then this would have to have a type enum 21 * support other GL path extensions then this would have to have a type enum
21 * and/or be subclassed. 22 * and/or be subclassed.
22 */ 23 */
23 24
24 class GrGLPath : public GrPath { 25 class GrGLPath : public GrPath {
25 public: 26 public:
26 GrGLPath(GrGpuGL* gpu, const SkPath& path); 27 GrGLPath(GrGpuGL* gpu, const SkPath& path, const SkStrokeRec& stroke);
27 virtual ~GrGLPath(); 28 virtual ~GrGLPath();
28 GrGLuint pathID() const { return fPathID; } 29 GrGLuint pathID() const { return fPathID; }
29 // TODO: Figure out how to get an approximate size of the path in Gpu 30 // TODO: Figure out how to get an approximate size of the path in Gpu
30 // memory. 31 // memory.
31 virtual size_t sizeInBytes() const SK_OVERRIDE { return 100; } 32 virtual size_t sizeInBytes() const SK_OVERRIDE { return 100; }
32 33
33 protected: 34 protected:
34 virtual void onRelease() SK_OVERRIDE; 35 virtual void onRelease() SK_OVERRIDE;
35 virtual void onAbandon() SK_OVERRIDE; 36 virtual void onAbandon() SK_OVERRIDE;
36 37
37 private: 38 private:
38 GrGLuint fPathID; 39 GrGLuint fPathID;
39 40
40 typedef GrPath INHERITED; 41 typedef GrPath INHERITED;
41 }; 42 };
42 43
43 #endif 44 #endif
OLDNEW
« no previous file with comments | « src/gpu/GrStencilAndCoverPathRenderer.cpp ('k') | src/gpu/gl/GrGLPath.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698