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

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

Issue 442603002: Calculate rough approximations for nvpr path sizes (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 4 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
« no previous file with comments | « no previous file | 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 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 {
24 public: 24 public:
25 static void InitPathObject(GrGpuGL*, 25 /**
26 GrGLuint pathID, 26 * Initialize a GL path object with a given path and stroke.
27 const SkPath&, 27 *
28 const SkStrokeRec&); 28 * @return the approximate GPU memory size of the path object in bytes.
29 */
30 static size_t InitPathObject(GrGpuGL*,
31 GrGLuint pathID,
32 const SkPath&,
33 const SkStrokeRec&);
29 34
30 GrGLPath(GrGpuGL* gpu, const SkPath& path, const SkStrokeRec& stroke); 35 GrGLPath(GrGpuGL* gpu, const SkPath& path, const SkStrokeRec& stroke);
31 virtual ~GrGLPath(); 36 virtual ~GrGLPath();
32 GrGLuint pathID() const { return fPathID; } 37 GrGLuint pathID() const { return fPathID; }
33 // TODO: Figure out how to get an approximate size of the path in Gpu 38 virtual size_t gpuMemorySize() const SK_OVERRIDE { return fGpuMemorySize; }
34 // memory.
35 virtual size_t gpuMemorySize() const SK_OVERRIDE { return 100; }
36 39
37 protected: 40 protected:
38 virtual void onRelease() SK_OVERRIDE; 41 virtual void onRelease() SK_OVERRIDE;
39 virtual void onAbandon() SK_OVERRIDE; 42 virtual void onAbandon() SK_OVERRIDE;
40 43
41 private: 44 private:
42 GrGLuint fPathID; 45 GrGLuint fPathID;
46 size_t fGpuMemorySize;
43 47
44 typedef GrPath INHERITED; 48 typedef GrPath INHERITED;
45 }; 49 };
46 50
47 #endif 51 #endif
OLDNEW
« no previous file with comments | « no previous file | src/gpu/gl/GrGLPath.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698