This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/openfl/display/BitmapData.hx b/openfl/display/BitmapData.hx | |
index d373ed4..fc4ebf5 100644 | |
--- a/openfl/display/BitmapData.hx | |
+++ b/openfl/display/BitmapData.hx | |
@@ -159,6 +159,7 @@ class BitmapData implements IBitmapDrawable { | |
@:noCompletion private var __buffer:GLBuffer; | |
@:noCompletion private var __isValid:Bool; | |
@:noCompletion private var __surface:CairoSurface; | |
+ @:noCompletion private var __surfaceFinalizer:BitmapDataSurfaceFinalizer; | |
@:noCompletion private var __texture:GLTexture; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package; | |
import openfl.display.Bitmap; | |
import openfl.display.BitmapData; | |
import openfl.display.Sprite; | |
import openfl.events.Event; | |
import openfl.geom.Rectangle; | |
import openfl.Assets; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
___ | |
/\_ \ __ | |
\//\ \ /\_\ ___ ___ __ | |
\ \ \ \/\ \ /' __` __`\ /'__`\ | |
\_\ \_\ \ \/\ \/\ \/\ \/\ __/ | |
/\____\\ \_\ \_\ \_\ \_\ \____\ | |
\/____/ \/_/\/_/\/_/\/_/\/____/ | |
Lime Command-Line Tools (2.9.1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private static var runNextFrameMutex = new Mutex(); | |
private static var runNextFrameQueue0 = new Array<Void->Void>(); | |
private static var runNextFrameQueue1 = new Array<Void->Void>(); | |
private static var runOnExitFrameMutex = new Mutex(); | |
private static var runOnExitFrameQueue0 = new Array<Void->Void>(); | |
private static var runOnExitFrameQueue1 = new Array<Void->Void>(); | |
// runNextFrame calls func at the beginning of the next ENTER_FRAME event. |
OlderNewer