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 |
11 #include "GrColor.h" | 11 #include "GrColor.h" |
12 #include "GrDefaultGeoProcFactory.h" | 12 #include "GrDefaultGeoProcFactory.h" |
13 #include "GrVertexBatch.h" | 13 #include "GrVertexBatch.h" |
14 | 14 |
15 class GrStrokeRectBatch : public GrVertexBatch { | 15 class GrStrokeRectBatch : public GrVertexBatch { |
16 public: | 16 public: |
17 struct Geometry { | 17 struct Geometry { |
18 GrColor fColor; | 18 GrColor fColor; |
19 SkMatrix fViewMatrix; | 19 SkMatrix fViewMatrix; |
20 SkRect fRect; | 20 SkRect fRect; |
21 SkScalar fStrokeWidth; | 21 SkScalar fStrokeWidth; |
22 }; | 22 }; |
23 | 23 |
| 24 BATCH_CLASS_ID |
| 25 |
24 static GrDrawBatch* Create(const Geometry& geometry, bool snapToPixelCenters
) { | 26 static GrDrawBatch* Create(const Geometry& geometry, bool snapToPixelCenters
) { |
25 return new GrStrokeRectBatch(geometry, snapToPixelCenters); | 27 return new GrStrokeRectBatch(geometry, snapToPixelCenters); |
26 } | 28 } |
27 | 29 |
28 const char* name() const override { return "GrStrokeRectBatch"; } | 30 const char* name() const override { return "GrStrokeRectBatch"; } |
29 | 31 |
30 void getInvariantOutputColor(GrInitInvariantOutput* out) const override { | 32 void getInvariantOutputColor(GrInitInvariantOutput* out) const override { |
31 // When this is called on a batch, there is only one geometry bundle | 33 // When this is called on a batch, there is only one geometry bundle |
32 out->setKnownFourComponents(fGeoData[0].fColor); | 34 out->setKnownFourComponents(fGeoData[0].fColor); |
33 } | 35 } |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 }; | 72 }; |
71 | 73 |
72 const static int kVertsPerHairlineRect = 5; | 74 const static int kVertsPerHairlineRect = 5; |
73 const static int kVertsPerStrokeRect = 10; | 75 const static int kVertsPerStrokeRect = 10; |
74 | 76 |
75 BatchTracker fBatch; | 77 BatchTracker fBatch; |
76 SkSTArray<1, Geometry, true> fGeoData; | 78 SkSTArray<1, Geometry, true> fGeoData; |
77 }; | 79 }; |
78 | 80 |
79 #endif | 81 #endif |
OLD | NEW |