| commit | 163c84ba5026907fea7b4f4bdcf8b16c13103adc | [log] [tgz] |
|---|---|---|
| author | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Thu Sep 13 15:40:37 2012 +0000 |
| committer | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Thu Sep 13 15:40:37 2012 +0000 |
| tree | 77edf07987586987f8ff2dac66b339d8ba711a3e | |
| parent | 69fbc52e95bb8ff2df76de09ca872fd62caf2480 [diff] [blame] |
Added GPU resource cache stats printing to render_pictures https://codereview.appspot.com/6492104/ git-svn-id: http://skia.googlecode.com/svn/trunk@5523 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/tools/render_pictures_main.cpp b/tools/render_pictures_main.cpp index 976441d..5ec2ede 100644 --- a/tools/render_pictures_main.cpp +++ b/tools/render_pictures_main.cpp
@@ -289,6 +289,16 @@ process_input(inputs[i], outputDir, *renderer); } +#if SK_SUPPORT_GPU +#if GR_CACHE_STATS + if (renderer->isUsingGpuDevice()) { + GrContext* ctx = renderer->getGrContext(); + + ctx->printCacheStats(); + } +#endif +#endif + SkDELETE(renderer); SkGraphics::Term(); }