aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/effects/GrSingleTextureEffect.h
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 /src/gpu/effects/GrSingleTextureEffect.h
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 'src/gpu/effects/GrSingleTextureEffect.h')
-rw-r--r--src/gpu/effects/GrSingleTextureEffect.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/gpu/effects/GrSingleTextureEffect.h b/src/gpu/effects/GrSingleTextureEffect.h
index 9df0cffa5a..4169e40469 100644
--- a/src/gpu/effects/GrSingleTextureEffect.h
+++ b/src/gpu/effects/GrSingleTextureEffect.h
@@ -21,7 +21,13 @@ class GrTexture;
*/
class GrSingleTextureEffect : public GrFragmentProcessor {
public:
- virtual ~GrSingleTextureEffect();
+ ~GrSingleTextureEffect() override;
+
+ SkString dumpInfo() const override {
+ SkString str;
+ str.appendf("Texture: %d", fTextureAccess.getTexture()->getUniqueID());
+ return str;
+ }
protected:
/** unfiltered, clamp mode */