aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/gpu/effects
diff options
context:
space:
mode:
authorGravatar robertphillips <robertphillips@google.com>2015-11-16 09:06:59 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-11-16 09:06:59 -0800
commite004bfc0a5e28cc083158f1a75e981ffd58a8134 (patch)
tree77ac623a0e5b6264d4933ae53da831e7220bfbf7 /include/gpu/effects
parenta7a21cffe1d56d52bac9accd05001e9c970e76f3 (diff)
Increase the amount of debug information printed out by batches
Untangling MDB bugs requires more information. In particular the render targets. BUG=skia:4094 TBR=bsalomon@google.com Review URL: https://codereview.chromium.org/1443763002
Diffstat (limited to 'include/gpu/effects')
-rw-r--r--include/gpu/effects/GrConstColorProcessor.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/gpu/effects/GrConstColorProcessor.h b/include/gpu/effects/GrConstColorProcessor.h
index c9686b6499..679533eac5 100644
--- a/include/gpu/effects/GrConstColorProcessor.h
+++ b/include/gpu/effects/GrConstColorProcessor.h
@@ -32,6 +32,12 @@ public:
const char* name() const override { return "Color"; }
+ SkString dumpInfo() const override {
+ SkString str;
+ str.appendf("Color: 0x%08x", fColor);
+ return str;
+ }
+
GrColor color() const { return fColor; }
InputMode inputMode() const { return fMode; }