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

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

Issue 1919843002: Revert of Batch multiple single NVPR draw paths to instanced draws (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 8 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 | « src/gpu/batches/GrDrawPathBatch.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 * Copyright 2012 Google Inc. 2 * Copyright 2012 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef GrGLPath_DEFINED 8 #ifndef GrGLPath_DEFINED
9 #define GrGLPath_DEFINED 9 #define GrGLPath_DEFINED
10 10
(...skipping 19 matching lines...) Expand all
30 static void InitPathObjectStroke(GrGLGpu* gpu, GrGLuint pathID, const GrStro keInfo& stroke); 30 static void InitPathObjectStroke(GrGLGpu* gpu, GrGLuint pathID, const GrStro keInfo& stroke);
31 31
32 static void InitPathObjectEmptyPath(GrGLGpu*, GrGLuint pathID); 32 static void InitPathObjectEmptyPath(GrGLGpu*, GrGLuint pathID);
33 33
34 34
35 GrGLPath(GrGLGpu* gpu, const SkPath& path, const GrStrokeInfo& stroke); 35 GrGLPath(GrGLGpu* gpu, const SkPath& path, const GrStrokeInfo& stroke);
36 GrGLuint pathID() const { return fPathID; } 36 GrGLuint pathID() const { return fPathID; }
37 37
38 bool shouldStroke() const { return fShouldStroke; } 38 bool shouldStroke() const { return fShouldStroke; }
39 bool shouldFill() const { return fShouldFill; } 39 bool shouldFill() const { return fShouldFill; }
40 bool canCombineDrawPathBatchWith(const GrPath& other) const override;
41 protected: 40 protected:
42 void onRelease() override; 41 void onRelease() override;
43 void onAbandon() override; 42 void onAbandon() override;
44 43
45 private: 44 private:
46 // TODO: Figure out how to get an approximate size of the path in Gpu memory . 45 // TODO: Figure out how to get an approximate size of the path in Gpu memory .
47 size_t onGpuMemorySize() const override { return 100; } 46 size_t onGpuMemorySize() const override { return 100; }
48 47
49 GrGLuint fPathID; 48 GrGLuint fPathID;
50 bool fShouldStroke; 49 bool fShouldStroke;
51 bool fShouldFill; 50 bool fShouldFill;
52 51
53 typedef GrPath INHERITED; 52 typedef GrPath INHERITED;
54 }; 53 };
55 54
56 #endif 55 #endif
OLDNEW
« no previous file with comments | « src/gpu/batches/GrDrawPathBatch.cpp ('k') | src/gpu/gl/GrGLPath.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698