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

Side by Side Diff: src/gpu/GrStrokeRectBatch.h

Issue 1275083002: Don't pass pipeline to GrBatch::generateGeometry() (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 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 | « src/gpu/GrRectBatch.cpp ('k') | src/gpu/GrStrokeRectBatch.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 2015 Google Inc. 2 * Copyright 2015 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 GrStrokeRectBatch_DEFINED 8 #ifndef GrStrokeRectBatch_DEFINED
9 #define GrStrokeRectBatch_DEFINED 9 #define GrStrokeRectBatch_DEFINED
10 10
(...skipping 20 matching lines...) Expand all
31 // When this is called on a batch, there is only one geometry bundle 31 // When this is called on a batch, there is only one geometry bundle
32 out->setKnownFourComponents(fGeoData[0].fColor); 32 out->setKnownFourComponents(fGeoData[0].fColor);
33 } 33 }
34 34
35 void getInvariantOutputCoverage(GrInitInvariantOutput* out) const override { 35 void getInvariantOutputCoverage(GrInitInvariantOutput* out) const override {
36 out->setKnownSingleComponent(0xff); 36 out->setKnownSingleComponent(0xff);
37 } 37 }
38 38
39 void initBatchTracker(const GrPipelineInfo& init) override; 39 void initBatchTracker(const GrPipelineInfo& init) override;
40 40
41 void generateGeometry(GrBatchTarget* batchTarget, const GrPipeline* pipeline ) override; 41 void generateGeometry(GrBatchTarget* batchTarget) override;
42 42
43 private: 43 private:
44 GrStrokeRectBatch(const Geometry& geometry, bool snapToPixelCenters); 44 GrStrokeRectBatch(const Geometry& geometry, bool snapToPixelCenters);
45 45
46 GrColor color() const { return fBatch.fColor; } 46 GrColor color() const { return fBatch.fColor; }
47 bool usesLocalCoords() const { return fBatch.fUsesLocalCoords; } 47 bool usesLocalCoords() const { return fBatch.fUsesLocalCoords; }
48 bool colorIgnored() const { return fBatch.fColorIgnored; } 48 bool colorIgnored() const { return fBatch.fColorIgnored; }
49 const SkMatrix& viewMatrix() const { return fGeoData[0].fViewMatrix; } 49 const SkMatrix& viewMatrix() const { return fGeoData[0].fViewMatrix; }
50 bool hairline() const { return fBatch.fHairline; } 50 bool hairline() const { return fBatch.fHairline; }
51 bool coverageIgnored() const { return fBatch.fCoverageIgnored; } 51 bool coverageIgnored() const { return fBatch.fCoverageIgnored; }
(...skipping 18 matching lines...) Expand all
70 }; 70 };
71 71
72 const static int kVertsPerHairlineRect = 5; 72 const static int kVertsPerHairlineRect = 5;
73 const static int kVertsPerStrokeRect = 10; 73 const static int kVertsPerStrokeRect = 10;
74 74
75 BatchTracker fBatch; 75 BatchTracker fBatch;
76 SkSTArray<1, Geometry, true> fGeoData; 76 SkSTArray<1, Geometry, true> fGeoData;
77 }; 77 };
78 78
79 #endif 79 #endif
OLDNEW
« no previous file with comments | « src/gpu/GrRectBatch.cpp ('k') | src/gpu/GrStrokeRectBatch.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698