@woosh/meep-engine 2.86.3 → 2.86.5
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/build/meep.cjs +1 -1
- package/build/meep.min.js +1 -1
- package/build/meep.module.js +1 -1
- package/package.json +1 -1
- package/src/engine/graphics/texture/sampler/filter/sampler2d_blur_gaussian.d.ts +1 -0
- package/src/engine/graphics/texture/sampler/filter/sampler2d_blur_gaussian.d.ts.map +1 -1
- package/src/engine/graphics/texture/sampler/filter/sampler2d_blur_gaussian.js +36 -10
package/build/meep.cjs
CHANGED
|
@@ -49574,7 +49574,7 @@ class Sampler2D {
|
|
|
49574
49574
|
const i0 = (y * width + x) * itemSize;
|
|
49575
49575
|
|
|
49576
49576
|
for (let i = 0; i < itemSize; i++) {
|
|
49577
|
-
this.data[i0 + i] =
|
|
49577
|
+
this.data[i0 + i] = data[i];
|
|
49578
49578
|
}
|
|
49579
49579
|
}
|
|
49580
49580
|
|