Add more batch information printouts
authorrobertphillips <robertphillips@google.com>
Thu, 19 Nov 2015 22:00:02 +0000 (14:00 -0800)
committerCommit bot <commit-bot@chromium.org>
Thu, 19 Nov 2015 22:00:02 +0000 (14:00 -0800)
Review URL: https://codereview.chromium.org/1457373003

src/gpu/GrAtlasTextContext.cpp
src/gpu/batches/GrAAFillRectBatch.cpp
src/gpu/batches/GrNinePatch.cpp
src/gpu/batches/GrNonAAFillRectBatch.cpp
src/gpu/batches/GrTInstanceBatch.h
src/gpu/effects/GrXfermodeFragmentProcessor.cpp

index 37fe092496d0f4521d4f8ce77a36544ac880072d..09190c495b692527d10d5f927bac9699b44265e7 100644 (file)
@@ -1335,6 +1335,22 @@ public:
 
     const char* name() const override { return "TextBatch"; }
 
+    SkString dumpInfo() const override {
+        SkString str;
+
+        for (int i = 0; i < fGeoCount; ++i) {
+            str.appendf("%d: Color: 0x%08x Trans: %.2f,%.2f Runs: %d\n",
+                        i,
+                        fGeoData[i].fColor,
+                        fGeoData[i].fTransX,
+                        fGeoData[i].fTransY,
+                        fGeoData[i].fBlob->fRunCount);
+        }
+
+        str.append(INHERITED::dumpInfo());
+        return str;
+    }
+
     void getInvariantOutputColor(GrInitInvariantOutput* out) const override {
         if (kColorBitmapMask_MaskType == fMaskType) {
             out->setUnknownFourComponents();
index 1b3f139a020dba920bc25fa0ddab17c6a77b2e3a..e2b088c541f45330f1b22f4b2a9690f5ff464fd5 100644 (file)
@@ -217,9 +217,10 @@ public:
 
     static const char* Name() { return "AAFillRectBatchNoLocalMatrix"; }
 
-    static SkString DumpInfo(const Geometry& geo) {
+    static SkString DumpInfo(const Geometry& geo, int index) {
         SkString str;
-        str.appendf("Color: 0x%08x, Rect [L: %.2f, T: %.2f, R: %.2f, B: %.2f]\n",
+        str.appendf("%d: Color: 0x%08x, Rect [L: %.2f, T: %.2f, R: %.2f, B: %.2f]\n",
+                    index,
                     geo.fColor,
                     geo.fRect.fLeft, geo.fRect.fTop, geo.fRect.fRight, geo.fRect.fBottom);
         return str;
@@ -266,9 +267,10 @@ public:
 
     static const char* Name() { return "AAFillRectBatchLocalMatrix"; }
 
-    static SkString DumpInfo(const Geometry& geo) {
+    static SkString DumpInfo(const Geometry& geo, int index) {
         SkString str;
-        str.appendf("Color: 0x%08x, Rect [L: %.2f, T: %.2f, R: %.2f, B: %.2f]\n",
+        str.appendf("%d: Color: 0x%08x, Rect [L: %.2f, T: %.2f, R: %.2f, B: %.2f]\n",
+                    index,
                     geo.fColor,
                     geo.fRect.fLeft, geo.fRect.fTop, geo.fRect.fRight, geo.fRect.fBottom);
         return str;
index 4c6310ccd495b01bf11ce93f3d1c84145d7e6e2d..999e1fd1562dbbeb54d42d5085e00f5a7211cee7 100644 (file)
@@ -54,7 +54,25 @@ public:
         geo.fViewMatrix.mapRect(&fBounds, geo.fDst);
     }
 
-    const char* name() const override { return "GrNonAANinePatchBatch"; }
+    const char* name() const override { return "NonAANinePatchBatch"; }
+
+    SkString dumpInfo() const override {
+        SkString str;
+
+        for (int i = 0; i < fGeoData.count(); ++i) {
+            str.appendf("%d: Color: 0x%08x Center [L: %d, T: %d, R: %d, B: %d], "
+                        "Dst [L: %.2f, T: %.2f, R: %.2f, B: %.2f]\n",
+                        i,
+                        fGeoData[i].fColor,
+                        fGeoData[i].fCenter.fLeft, fGeoData[i].fCenter.fTop,
+                        fGeoData[i].fCenter.fRight, fGeoData[i].fCenter.fBottom,
+                        fGeoData[i].fDst.fLeft, fGeoData[i].fDst.fTop,
+                        fGeoData[i].fDst.fRight, fGeoData[i].fDst.fBottom);
+        }
+
+        str.append(INHERITED::dumpInfo());
+        return str;
+    }
 
     void getInvariantOutputColor(GrInitInvariantOutput* out) const override {
         out->setUnknownFourComponents();
index 3ad869bc9ac67c872856a916301be6aca09c9e32..5f37741b4647fa4e9d460dcd3f6c4759d678fd26 100644 (file)
@@ -124,9 +124,10 @@ public:
 
     static const char* Name() { return "NonAAFillRectBatch"; }
 
-    static SkString DumpInfo(const Geometry& geo) {
+    static SkString DumpInfo(const Geometry& geo, int index) {
         SkString str;
-        str.appendf("Color: 0x%08x, Rect [L: %.2f, T: %.2f, R: %.2f, B: %.2f]\n",
+        str.appendf("%d: Color: 0x%08x, Rect [L: %.2f, T: %.2f, R: %.2f, B: %.2f]\n",
+                    index,
                     geo.fColor,
                     geo.fRect.fLeft, geo.fRect.fTop, geo.fRect.fRight, geo.fRect.fBottom);
         return str;
@@ -168,9 +169,10 @@ public:
 
     static const char* Name() { return "NonAAFillRectBatchPerspective"; }
 
-    static SkString DumpInfo(const Geometry& geo) {
+    static SkString DumpInfo(const Geometry& geo, int index) {
         SkString str;
-        str.appendf("Color: 0x%08x, Rect [L: %.2f, T: %.2f, R: %.2f, B: %.2f]\n",
+        str.appendf("%d: Color: 0x%08x, Rect [L: %.2f, T: %.2f, R: %.2f, B: %.2f]\n",
+                    index,
                     geo.fColor,
                     geo.fRect.fLeft, geo.fRect.fTop, geo.fRect.fRight, geo.fRect.fBottom);
         return str;
index 86d85b616f7d5153c522bf86b63606b4491d5c6f..5dc5988e58a6d0d930fa6cf287bb3daa81802b4c 100644 (file)
@@ -53,7 +53,7 @@ public:
     SkString dumpInfo() const override {
         SkString str;
         for (int i = 0; i < fGeoData.count(); ++i) {
-            str.append(Impl::DumpInfo(fGeoData[i]));
+            str.append(Impl::DumpInfo(fGeoData[i], i));
         }
         str.append(INHERITED::dumpInfo());
         return str;
index 3706c994b80359c3ccea916ce81eaadfe9c0e6c8..6ff4d32f0673c4b57e6d5075d78e398614456780 100644 (file)
@@ -154,6 +154,15 @@ public:
 
     const char* name() const override { return "ComposeOne"; }
 
+    SkString dumpInfo() const override {
+        SkString str;
+
+        for (int i = 0; i < this->numChildProcessors(); ++i) {
+            str.append(this->childProcessor(i).dumpInfo());
+        }
+        return str;
+    }
+
     void onGetGLSLProcessorKey(const GrGLSLCaps& caps, GrProcessorKeyBuilder* b) const override {
         GR_STATIC_ASSERT((SkXfermode::kLastMode & SK_MaxU16) == SkXfermode::kLastMode);
         b->add32(fMode | (fChild << 16));