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

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

Issue 1353043002: Revert of add a ClassID function to GrBatch (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 3 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/GrDiscardBatch.h ('k') | src/gpu/batches/GrDrawAtlasBatch.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 GrDrawAtlasBatch_DEFINED 8 #ifndef GrDrawAtlasBatch_DEFINED
9 #define GrDrawAtlasBatch_DEFINED 9 #define GrDrawAtlasBatch_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 GrDrawAtlasBatch : public GrVertexBatch { 15 class GrDrawAtlasBatch : public GrVertexBatch {
16 public: 16 public:
17 DEFINE_BATCH_CLASS_ID
18
19 struct Geometry { 17 struct Geometry {
20 GrColor fColor; 18 GrColor fColor;
21 SkTArray<uint8_t, true> fVerts; 19 SkTArray<uint8_t, true> fVerts;
22 }; 20 };
23 21
24 static GrDrawBatch* Create(const Geometry& geometry, const SkMatrix& viewMat rix, 22 static GrDrawBatch* Create(const Geometry& geometry, const SkMatrix& viewMat rix,
25 int spriteCount, const SkRSXform* xforms, const S kRect* rects, 23 int spriteCount, const SkRSXform* xforms, const S kRect* rects,
26 const SkColor* colors) { 24 const SkColor* colors) {
27 return new GrDrawAtlasBatch(geometry, viewMatrix, spriteCount, xforms, r ects, colors); 25 return new GrDrawAtlasBatch(geometry, viewMatrix, spriteCount, xforms, r ects, colors);
28 } 26 }
29 27
30 const char* name() const override { return "DrawAtlasBatch"; } 28 const char* name() const override { return "DrawAtlasBatch"; }
31 29
32 void getInvariantOutputColor(GrInitInvariantOutput* out) const override { 30 void getInvariantOutputColor(GrInitInvariantOutput* out) const override {
33 // 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
(...skipping 27 matching lines...) Expand all
61 59
62 bool onCombineIfPossible(GrBatch* t, const GrCaps&) override; 60 bool onCombineIfPossible(GrBatch* t, const GrCaps&) override;
63 SkSTArray<1, Geometry, true> fGeoData; 61 SkSTArray<1, Geometry, true> fGeoData;
64 62
65 SkMatrix fViewMatrix; 63 SkMatrix fViewMatrix;
66 GrColor fColor; 64 GrColor fColor;
67 int fQuadCount; 65 int fQuadCount;
68 bool fColorIgnored; 66 bool fColorIgnored;
69 bool fCoverageIgnored; 67 bool fCoverageIgnored;
70 bool fHasColors; 68 bool fHasColors;
71
72 typedef GrVertexBatch INHERITED;
73 }; 69 };
74 70
75 #endif 71 #endif
OLDNEW
« no previous file with comments | « src/gpu/batches/GrDiscardBatch.h ('k') | src/gpu/batches/GrDrawAtlasBatch.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698