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

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

Issue 1301663002: Privatize GrBatch subclass overrides (Closed) Base URL: https://skia.googlesource.com/skia.git@drawsonvb
Patch Set: more 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/batches/GrDrawVerticesBatch.h ('k') | src/gpu/effects/GrDashingEffect.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 18 matching lines...) Expand all
29 29
30 void getInvariantOutputColor(GrInitInvariantOutput* out) const override { 30 void getInvariantOutputColor(GrInitInvariantOutput* out) const override {
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 GrPipelineOptimizations&) override;
40
41 private: 39 private:
42 void onPrepareDraws(Target*) override; 40 void onPrepareDraws(Target*) override;
41 void initBatchTracker(const GrPipelineOptimizations&) override;
43 42
44 GrStrokeRectBatch(const Geometry& geometry, bool snapToPixelCenters); 43 GrStrokeRectBatch(const Geometry& geometry, bool snapToPixelCenters);
45 44
46 GrColor color() const { return fBatch.fColor; } 45 GrColor color() const { return fBatch.fColor; }
47 bool usesLocalCoords() const { return fBatch.fUsesLocalCoords; } 46 bool usesLocalCoords() const { return fBatch.fUsesLocalCoords; }
48 bool colorIgnored() const { return fBatch.fColorIgnored; } 47 bool colorIgnored() const { return fBatch.fColorIgnored; }
49 const SkMatrix& viewMatrix() const { return fGeoData[0].fViewMatrix; } 48 const SkMatrix& viewMatrix() const { return fGeoData[0].fViewMatrix; }
50 bool hairline() const { return fBatch.fHairline; } 49 bool hairline() const { return fBatch.fHairline; }
51 bool coverageIgnored() const { return fBatch.fCoverageIgnored; } 50 bool coverageIgnored() const { return fBatch.fCoverageIgnored; }
52 51
(...skipping 18 matching lines...) Expand all
71 }; 70 };
72 71
73 const static int kVertsPerHairlineRect = 5; 72 const static int kVertsPerHairlineRect = 5;
74 const static int kVertsPerStrokeRect = 10; 73 const static int kVertsPerStrokeRect = 10;
75 74
76 BatchTracker fBatch; 75 BatchTracker fBatch;
77 SkSTArray<1, Geometry, true> fGeoData; 76 SkSTArray<1, Geometry, true> fGeoData;
78 }; 77 };
79 78
80 #endif 79 #endif
OLDNEW
« no previous file with comments | « src/gpu/batches/GrDrawVerticesBatch.h ('k') | src/gpu/effects/GrDashingEffect.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698