Comment out call broken call to pushMatrix in LuaCanvas
authorcommit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>
Tue, 13 May 2014 20:32:32 +0000 (20:32 +0000)
committercommit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>
Tue, 13 May 2014 20:32:32 +0000 (20:32 +0000)
BUG=skia:
R=robertphillips@google.com

Author: egdaniel@google.com

Review URL: https://codereview.chromium.org/271533013

git-svn-id: http://skia.googlecode.com/svn/trunk@14719 2bbb7eff-a529-9590-31e7-b0007b416f81

src/utils/SkLuaCanvas.cpp

index 7e7f1730ba242d51c747c1387d70a86ab216c4ac..b4c7c771c39eaeeadb72f68eb02925a41c870c33 100644 (file)
@@ -122,7 +122,9 @@ void SkLuaCanvas::didConcat(const SkMatrix& matrix) {
         }
         default: {
             AUTO_LUA("concat");
-            lua.pushMatrix(matrix);
+            // pushMatrix added in https://codereview.chromium.org/203203004/
+            // Doesn't seem to have ever been working correctly since added
+            // lua.pushMatrix(matrix);
             break;
         }
     }