You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by yi...@apache.org on 2020/10/26 15:37:36 UTC

[royale-asjs] branch develop updated: Fix SWF build after emulation stub broke it

This is an automated email from the ASF dual-hosted git repository.

yishayw pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
     new 7530c0c  Fix SWF build after emulation stub broke it
7530c0c is described below

commit 7530c0c5426e12871007aed40655b787795afd26
Author: Yishay Weiss <yi...@hotmail.com>
AuthorDate: Mon Oct 26 15:37:16 2020 +0000

    Fix SWF build after emulation stub broke it
---
 .../projects/MXRoyale/src/main/royale/mx/graphics/BitmapFill.as     | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/graphics/BitmapFill.as b/frameworks/projects/MXRoyale/src/main/royale/mx/graphics/BitmapFill.as
index 3912a22..d1ac1b1 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/graphics/BitmapFill.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/graphics/BitmapFill.as
@@ -21,7 +21,7 @@ package mx.graphics
 {
 
 //import mx.display.Bitmap;
-import org.apache.royale.display.BitmapData;
+//import org.apache.royale.display.BitmapData;
 //import mx.core.UIComponent;
 import mx.display.Graphics;
 //import org.apache.royale.events.Event;
@@ -85,8 +85,8 @@ public class BitmapFill extends EventDispatcher implements IFill // not implemen
     
     private static const RADIANS_PER_DEGREES:Number = Math.PI / 180;
     private static var transformMatrix:Matrix = new Matrix();
-    private var nonRepeatAlphaSource:BitmapData;
-    private var _bitmapData:BitmapData;
+    //private var nonRepeatAlphaSource:BitmapData;
+    //private var _bitmapData:BitmapData;
     
     private var regenerateNonRepeatSource:Boolean = true;
     private var lastBoundsWidth:Number = 0;