commit | 14f584b3537e88ce7926d1ae5502bd1f3d1fb9e3 | [log] [tgz] |
---|---|---|
author | reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Tue May 21 14:19:53 2013 +0000 |
committer | reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Tue May 21 14:19:53 2013 +0000 |
tree | 560a54ce07e3710ce90e746cc82ae7308d55105f | |
parent | a5a59b362b0b003e978aca8fee1fd364e1429825 [diff] [blame] |
disable dumping the ctm on every drawRect verb (was there for testing) BUG= Review URL: https://codereview.chromium.org/15470017 git-svn-id: http://skia.googlecode.com/svn/trunk@9213 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/tools/lua/scrape.lua b/tools/lua/scrape.lua index 739a2f7..cbdbc8d 100644 --- a/tools/lua/scrape.lua +++ b/tools/lua/scrape.lua
@@ -30,7 +30,7 @@ local n = total[t.verb] or 0 total[t.verb] = n + 1 - if t.verb == "drawRect" then + if false and t.verb == "drawRect" then local m = canvas:getTotalMatrix() print("... ", tostr(m), "\n") end