@rings-webgpu/core 1.0.51 → 1.0.52
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/dist/rings.es.js +2 -2
- package/dist/rings.es.js.map +3 -3
- package/dist/rings.es.max.js +2 -8
- package/dist/rings.umd.js +41 -41
- package/dist/rings.umd.js.map +3 -3
- package/dist/rings.umd.max.js +2 -8
- package/package.json +1 -1
package/dist/rings.es.max.js
CHANGED
|
@@ -42437,7 +42437,7 @@ class PostProcessingComponent extends ComponentBase {
|
|
|
42437
42437
|
}
|
|
42438
42438
|
}
|
|
42439
42439
|
|
|
42440
|
-
const version = "1.0.
|
|
42440
|
+
const version = "1.0.52";
|
|
42441
42441
|
|
|
42442
42442
|
class Engine3D {
|
|
42443
42443
|
/**
|
|
@@ -55966,14 +55966,8 @@ let PointCloudStreamRenderer = class extends RenderNode {
|
|
|
55966
55966
|
}
|
|
55967
55967
|
}
|
|
55968
55968
|
if (updateRatio < 0.5 && rowCount < h) {
|
|
55969
|
-
const rowStartIdx = minRow * w;
|
|
55970
|
-
const rowEndIdx = (maxRow + 1) * w;
|
|
55971
|
-
const partialPositionData = this._positionData.subarray(
|
|
55972
|
-
rowStartIdx * 4,
|
|
55973
|
-
rowEndIdx * 4
|
|
55974
|
-
);
|
|
55975
55969
|
this.pointColor.updateTexture(w, h, this._colorData, minRow, rowCount);
|
|
55976
|
-
this.pointPosition.updateTexture(w, h,
|
|
55970
|
+
this.pointPosition.updateTexture(w, h, this._positionData, false, minRow, rowCount);
|
|
55977
55971
|
} else {
|
|
55978
55972
|
this.pointColor.updateTexture(w, h, this._colorData);
|
|
55979
55973
|
this.pointPosition.updateTexture(w, h, this._positionData, false);
|