aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/lua
diff options
context:
space:
mode:
authorGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-07-12 18:36:12 +0000
committerGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-07-12 18:36:12 +0000
commitf37f2ccd751615ca661e069b43e9c4e30ebaf007 (patch)
tree841b18076637e49be4054489e8d884051ef9a49e /tools/lua
parent4b3ef5ad33aa3dcef083101177dd8a91978cc7de (diff)
clean up extra printfs in count_effects.lua
git-svn-id: http://skia.googlecode.com/svn/trunk@10052 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tools/lua')
-rw-r--r--tools/lua/count_effects.lua5
1 files changed, 0 insertions, 5 deletions
diff --git a/tools/lua/count_effects.lua b/tools/lua/count_effects.lua
index 5bd489977e..f4469abbb9 100644
--- a/tools/lua/count_effects.lua
+++ b/tools/lua/count_effects.lua
@@ -33,15 +33,10 @@ end
local total_paints = 0;
function sk_scrape_accumulate(t)
- -- dump the params in t, specifically showing the verb first, which we
- -- then nil out so it doesn't appear in tostr()
- io.write(t.verb, " ")
- t.verb = nil
if (t.paint) then
total_paints = total_paints + 1
count_fields(t.paint:getEffects())
end
- io.write(tostr(t), "\n")
end
function sk_scrape_summarize()