From 1caedbb216703df58ce5ebe29955e53fa098d8dc Mon Sep 17 00:00:00 2001 From: "commit-bot@chromium.org" Date: Wed, 26 Feb 2014 18:32:44 +0000 Subject: Revert of Add getReducedClipStack to lua canvas (https://codereview.chromium.org/180283004/) Reason for revert: breaking a bunch of builds Original issue's description: > Add getReducedClipStack to lua canvas > > Committed: http://code.google.com/p/skia/source/detail?r=13594 R=reed@google.com TBR=reed@google.com NOTREECHECKS=true NOTRY=true Author: bsalomon@google.com Review URL: https://codereview.chromium.org/181653004 git-svn-id: http://skia.googlecode.com/svn/trunk@13597 2bbb7eff-a529-9590-31e7-b0007b416f81 --- tools/lua/dump_clipstack_at_restore.lua | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'tools/lua') diff --git a/tools/lua/dump_clipstack_at_restore.lua b/tools/lua/dump_clipstack_at_restore.lua index eb5afb9bdb..4691b5b250 100644 --- a/tools/lua/dump_clipstack_at_restore.lua +++ b/tools/lua/dump_clipstack_at_restore.lua @@ -11,8 +11,7 @@ end function sk_scrape_accumulate(t) if (t.verb == "restore") then restoreCount = restoreCount + 1; - -- io.write("Clip Stack at restore #", restoreCount, ":\n") - io.write("Reduced Clip Stack at restore #", restoreCount, ":\n") + io.write("Clip Stack at restore #", restoreCount, ":\n") for i = 1, #clipstack do local element = clipstack[i]; io.write("\t", element["op"], ", ", element["type"], ", aa:", tostring(element["aa"])) @@ -25,8 +24,7 @@ function sk_scrape_accumulate(t) end io.write("\n") else - -- clipstack = canvas:getClipStack() - clipstack = canvas:getReducedClipStack() + clipstack = canvas:getClipStack() end end -- cgit v1.2.3