babylonjs-addons 8.55.3 → 8.55.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/babylonjs.addons.d.ts
CHANGED
|
@@ -2042,6 +2042,7 @@ declare module ADDONS {
|
|
|
2042
2042
|
private _effectRenderer;
|
|
2043
2043
|
private _isDirty;
|
|
2044
2044
|
private _isDisposed;
|
|
2045
|
+
private _needsReadPixels;
|
|
2045
2046
|
/**
|
|
2046
2047
|
* True if the LUT has been rendered.
|
|
2047
2048
|
*/
|
|
@@ -2082,6 +2083,11 @@ declare module ADDONS {
|
|
|
2082
2083
|
* @returns true if the LUT was rendered.
|
|
2083
2084
|
*/
|
|
2084
2085
|
render(): boolean;
|
|
2086
|
+
/**
|
|
2087
|
+
* Reads back the LUT data from the GPU if a readback is pending.
|
|
2088
|
+
* @internal
|
|
2089
|
+
*/
|
|
2090
|
+
readPixelsAsync(): Promise<void>;
|
|
2085
2091
|
/**
|
|
2086
2092
|
* Marks the LUT as needing to be rendered.
|
|
2087
2093
|
*/
|
|
@@ -2121,6 +2127,7 @@ declare module ADDONS {
|
|
|
2121
2127
|
private _effectRenderer;
|
|
2122
2128
|
private _isDirty;
|
|
2123
2129
|
private _isDisposed;
|
|
2130
|
+
private _needsReadPixels;
|
|
2124
2131
|
private _lutData;
|
|
2125
2132
|
/**
|
|
2126
2133
|
* True if the LUT needs to be rendered.
|
|
@@ -2160,6 +2167,11 @@ declare module ADDONS {
|
|
|
2160
2167
|
* @returns True if the LUT was rendered.
|
|
2161
2168
|
*/
|
|
2162
2169
|
render(): boolean;
|
|
2170
|
+
/**
|
|
2171
|
+
* Reads back the LUT data from the GPU if a readback is pending.
|
|
2172
|
+
* @internal
|
|
2173
|
+
*/
|
|
2174
|
+
readPixelsAsync(): Promise<void>;
|
|
2163
2175
|
/**
|
|
2164
2176
|
* Marks the LUT as needing to be rendered.
|
|
2165
2177
|
*/
|