| 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 GrDrawAtlasBatch_DEFINED | 8 #ifndef GrDrawAtlasBatch_DEFINED |
| 9 #define GrDrawAtlasBatch_DEFINED | 9 #define GrDrawAtlasBatch_DEFINED |
| 10 | 10 |
| 11 #include "GrBatch.h" | |
| 12 #include "GrColor.h" | 11 #include "GrColor.h" |
| 13 #include "GrDefaultGeoProcFactory.h" | 12 #include "GrDefaultGeoProcFactory.h" |
| 13 #include "GrVertexBatch.h" |
| 14 | 14 |
| 15 class GrDrawAtlasBatch : public GrVertexBatch { | 15 class GrDrawAtlasBatch : public GrVertexBatch { |
| 16 public: | 16 public: |
| 17 struct Geometry { | 17 struct Geometry { |
| 18 GrColor fColor; | 18 GrColor fColor; |
| 19 SkTArray<uint8_t, true> fVerts; | 19 SkTArray<uint8_t, true> fVerts; |
| 20 }; | 20 }; |
| 21 | 21 |
| 22 static GrDrawBatch* Create(const Geometry& geometry, const SkMatrix& viewMat
rix, | 22 static GrDrawBatch* Create(const Geometry& geometry, const SkMatrix& viewMat
rix, |
| 23 int spriteCount, const SkRSXform* xforms, const S
kRect* rects, | 23 int spriteCount, const SkRSXform* xforms, const S
kRect* rects, |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 | 62 |
| 63 SkMatrix fViewMatrix; | 63 SkMatrix fViewMatrix; |
| 64 GrColor fColor; | 64 GrColor fColor; |
| 65 int fQuadCount; | 65 int fQuadCount; |
| 66 bool fColorIgnored; | 66 bool fColorIgnored; |
| 67 bool fCoverageIgnored; | 67 bool fCoverageIgnored; |
| 68 bool fHasColors; | 68 bool fHasColors; |
| 69 }; | 69 }; |
| 70 | 70 |
| 71 #endif | 71 #endif |
| OLD | NEW |