| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |