Index: src/gpu/GrGpu.h |
diff --git a/src/gpu/GrGpu.h b/src/gpu/GrGpu.h |
index c5fa61bd99851d9b9e5a58d56d14f5a7c7f7573b..dd33cff39f166cef5a137208b0783f3ac9c87896 100644 |
--- a/src/gpu/GrGpu.h |
+++ b/src/gpu/GrGpu.h |
@@ -342,6 +342,7 @@ public: |
void incStencilAttachmentCreates() { fStencilAttachmentCreates++; } |
void incNumDraws() { fNumDraws++; } |
void dump(SkString*); |
+ void dumpKeyValuePairs(SkTArray<SkString>* keys, SkTArray<double>* values); |
private: |
int fRenderTargetBinds; |
@@ -351,7 +352,8 @@ public: |
int fStencilAttachmentCreates; |
int fNumDraws; |
#else |
- void dump(SkString*) {}; |
+ void dump(SkString*) {} |
+ void dumpKeyValuePairs(SkTArray<SkString>*, SkTArray<double>*) {} |
void incRenderTargetBinds() {} |
void incShaderCompilations() {} |
void incTextureCreates() {} |