AdobeAIR released "exe" + broken 3D transform
Hi, I'm working on FLEX + AdobeAIR desktop application and using 3D transform.
ADL works perfect, but when I've run ready installation file, I faced with 3D artifacts in the release program.

1. FlexSKD: 4.15.0 AIR21
2. Test code:
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark" creationComplete="onCreationComplete(event)">
<fx:Script><![CDATA[
import mx.events.FlexEvent;
private var loader:Loader;
private function onCreationComplete(event:FlexEvent):void {
var sprite:Sprite = new Sprite();;
sprite.graphics.beginFill(0xFF00FF);
sprite.graphics.drawRect(0,0,100, 200);
sprite.rotationX = 8;
spriteVisualElement.addChild(sprite);
}
]]></fx:Script>
<s:SpriteVisualElement id="spriteVisualElement">
</s:SpriteVisualElement>
</s:WindowedApplication>
3. The full project is (Idea) : https://dl.dropboxusercontent.com/u/8126219/test_kinetic_loading.zip
