You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by bi...@apache.org on 2014/09/12 20:04:27 UTC

git commit: [flex-asjs] [refs/heads/develop] - Set Application.stageQuality to HIGH_16X16_LINEAR

Repository: flex-asjs
Updated Branches:
  refs/heads/develop 1d58af673 -> 009dbdceb


Set Application.stageQuality to HIGH_16X16_LINEAR


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

Branch: refs/heads/develop
Commit: 009dbdceb749a44cda7e4a603bd7f4a96e07918c
Parents: 1d58af6
Author: Om <bi...@gmail.com>
Authored: Wed Sep 10 14:24:04 2014 -0700
Committer: Om <bi...@gmail.com>
Committed: Thu Sep 11 11:59:09 2014 -0700

----------------------------------------------------------------------
 .../as/projects/FlexJSUI/src/org/apache/flex/core/Application.as  | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/009dbdce/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/Application.as
----------------------------------------------------------------------
diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/Application.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/Application.as
index ce76df5..45c35f4 100644
--- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/Application.as
+++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/Application.as
@@ -21,6 +21,7 @@ package org.apache.flex.core
     import flash.display.DisplayObject;
     import flash.display.Sprite;
     import flash.display.StageAlign;
+    import flash.display.StageQuality;
     import flash.display.StageScaleMode;
     import flash.events.IOErrorEvent;
     import flash.system.ApplicationDomain;
@@ -98,6 +99,8 @@ package org.apache.flex.core
 			{
 				stage.align = StageAlign.TOP_LEFT;
 				stage.scaleMode = StageScaleMode.NO_SCALE;
+				stage.quality = StageQuality.HIGH_16X16_LINEAR;
+				trace("working");
 			}
 			
             loaderInfo.addEventListener(flash.events.Event.INIT, initHandler);