From d76283a30081c65cceb0fc342ae9dee6dbb53f03 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Mon, 21 Oct 2024 22:01:52 +0000
Subject: [PATCH] deploy: c15f465b6c7d3a9efbcbdd72cb0e811385997b3e
---
openfl/desktop/Clipboard.html | 2 +-
openfl/display/BitmapData.html | 23 +++++++++++-------
openfl/filesystem/FileStream.html | 36 ++++++++++------------------
openfl/net/URLLoader.html | 2 +-
openfl/net/URLRequest.html | 2 +-
openfl/net/URLStream.html | 2 +-
openfl/sensors/Accelerometer.html | 2 +-
openfl/system/System.html | 10 +++++++-
openfl/utils/Assets.html | 32 ++++++++++++-------------
openfl/utils/Dictionary.html | 40 ++++++++++++++++---------------
openfl/utils/index.html | 8 +++----
11 files changed, 81 insertions(+), 78 deletions(-)
diff --git a/openfl/desktop/Clipboard.html b/openfl/desktop/Clipboard.html
index 8d0e928..83c4672 100644
--- a/openfl/desktop/Clipboard.html
+++ b/openfl/desktop/Clipboard.html
@@ -101,7 +101,7 @@
on a paste event. Calling Clipboard.getData()
under any other
circumstances will be unsuccessful. The same restriction applies in AIR
for content outside the application sandbox.
On Linux, clipboard data does not persist when an AIR application closes.
staticread onlygeneralClipboard:Clipboard
The operating system clipboard. +
On Linux, clipboard data does not persist when an AIR application closes.
See also:
staticread onlygeneralClipboard:Clipboard
The operating system clipboard. Any data pasted to the system clipboard is available to other applications. This may include insecure remote code running in a web browser.
diff --git a/openfl/display/BitmapData.html b/openfl/display/BitmapData.html index cfe763b..a90264d 100644 --- a/openfl/display/BitmapData.html +++ b/openfl/display/BitmapData.html @@ -483,11 +483,13 @@ considered opaque in the second BitmapData object. Use this parameter only when the value ofsecondObject
is a BitmapData object and both BitmapData objects
are transparent.Returns:
A value of true
if a hit occurs; otherwise, false
.
Throws:
ArgumentError | The |
---|---|
TypeError | The |
lock():Void
Locks an image so that any objects that reference the BitmapData object,
-such as Bitmap objects, are not updated when this BitmapData object
-changes. To improve performance, use this method along with the
-unlock()
method before and after numerous calls to the
-setPixel()
or setPixel32()
method.
merge(sourceBitmapData:BitmapData, sourceRect:Rectangle, destPoint:Point, redMultiplier:UInt, greenMultiplier:UInt, blueMultiplier:UInt, alphaMultiplier:UInt):Void
Performs per-channel blending from a source image to a destination image. For +Bitmap, or BitmapData object.
TypeError
The firstPoint
is null
.
lock():Void
When targeting AIR, this method locks an image so that any objects
+that reference the BitmapData object, such as Bitmap objects, are not
+updated when this BitmapData object changes. To improve performance,
+use this method along with the unlock()
method before and after numerous
+calls to the setPixel()
or setPixel32()
method.
Note: This method only provides an optimization on the AIR(Flash) target. +For all other targets, this method contains an empty function body.
merge(sourceBitmapData:BitmapData, sourceRect:Rectangle, destPoint:Point, redMultiplier:UInt, greenMultiplier:UInt, blueMultiplier:UInt, alphaMultiplier:UInt):Void
Performs per-channel blending from a source image to a destination image. For
each channel and each pixel, a new value is computed based on the channel
values of the source and destination pixels. For example, in the red channel,
the new value is computed as follows (where redSrc
is the red channel value
@@ -674,11 +676,14 @@
destination when the threshold test fails. If the
value is false
, the source image is
not copied when the threshold test fails.
Returns:
The number of pixels that were changed.
Throws:
ArgumentError | The operation string is not a valid operation |
---|---|
TypeError | The sourceBitmapData, sourceRect destPoint or -operation are null. |
unlock(?changeRect:Rectangle):Void
Unlocks an image so that any objects that reference the BitmapData object,
-such as Bitmap objects, are updated when this BitmapData object changes.
-To improve performance, use this method along with the lock()
+operation are null.
unlock(?changeRect:Rectangle):Void
When targeting AIR, this method Unlocks an image so that any objects that reference +the BitmapData object, such as Bitmap objects, are updated when this BitmapData object +changes.
+To improve performance, use this method along with the lock()
method before and after numerous calls to the setPixel()
or
-setPixel32()
method.
Parameters:
changeRect | The area of the BitmapData object that has changed. If
+ Note: This method only provides an optimization on the AIR(Flash) target. +For all other targets, this method contains an empty function body. Parameters:
|
---|