We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e40a61 commit 3352f2dCopy full SHA for 3352f2d
1 file changed
src/openfl/display/DisplayObjectRenderer.hx
@@ -699,7 +699,14 @@ class DisplayObjectRenderer extends EventDispatcher
699
filter.__renderDirty = false;
700
}
701
702
- displayObject.__cacheBitmap.__bitmapData = bitmap;
+ if (displayObject.__cacheBitmapData != bitmap)
703
+ {
704
+ cacheBitmap = displayObject.__cacheBitmapData;
705
+ displayObject.__cacheBitmapData = bitmap;
706
+ displayObject.__cacheBitmapData2 = cacheBitmap;
707
+ }
708
+
709
+ displayObject.__cacheBitmap.__bitmapData = displayObject.__cacheBitmapData;
710
711
712
parentRenderer.__blendMode = NORMAL;
0 commit comments