Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Unified Diff: tools/lua/scrape.lua

Issue 15470017: disable dumping the ctm on every drawRect verb (was there for testing) (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/lua/scrape.lua
diff --git a/tools/lua/scrape.lua b/tools/lua/scrape.lua
index 739a2f77ac7e6c9bf588da7405d444bff35273f4..cbdbc8d1c5e7cebad1d2596248880791979c9818 100644
--- a/tools/lua/scrape.lua
+++ b/tools/lua/scrape.lua
@@ -30,7 +30,7 @@ function accumulate(t)
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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698