You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2015/05/23 08:04:27 UTC

git commit: [flex-sdk] [refs/heads/develop] - add more diagnostics to comparebitmap

Repository: flex-sdk
Updated Branches:
  refs/heads/develop e80b203f3 -> 056114030


add more diagnostics to comparebitmap


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/05611403
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/05611403
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/05611403

Branch: refs/heads/develop
Commit: 05611403001984404b9099340b12a06d4d526957
Parents: e80b203
Author: Alex Harui <ah...@apache.org>
Authored: Fri May 22 23:03:33 2015 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Fri May 22 23:04:16 2015 -0700

----------------------------------------------------------------------
 mustella/as3/src/mustella/CompareBitmap.as | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/05611403/mustella/as3/src/mustella/CompareBitmap.as
----------------------------------------------------------------------
diff --git a/mustella/as3/src/mustella/CompareBitmap.as b/mustella/as3/src/mustella/CompareBitmap.as
index d80841c..afdad10 100644
--- a/mustella/as3/src/mustella/CompareBitmap.as
+++ b/mustella/as3/src/mustella/CompareBitmap.as
@@ -393,6 +393,10 @@ public class CompareBitmap extends Assert
             width = target.width * target.root.scaleX;
             height = target.height * target.root.scaleY;
         }
+        trace("getTargetSize: height: ", target.height);
+        trace("getTargetSize: root.height: ", target.root.height);
+        trace("getTargetSize: stageHeight: ", target.stage.stageHeight);
+        trace("getTargetSize: loaderInfo.height: ", target.loaderInfo.height);
 		return new Point(width, height);
 	}