@woosh/meep-engine 2.121.12 → 2.121.13
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/package.json
CHANGED
|
@@ -13,7 +13,7 @@ export function sampler2d_combine(input0, input1, result, operation) {
|
|
|
13
13
|
assert.notEqual(input1, undefined, "input1 is undefined");
|
|
14
14
|
assert.notEqual(result, undefined, "result is undefined");
|
|
15
15
|
|
|
16
|
-
assert.
|
|
16
|
+
assert.isFunction(operation, "operation");
|
|
17
17
|
|
|
18
18
|
assert.equal(input0.width, input1.width, `input0.width(=${input0.width}) is not equal to input1.width(=${input1.width})`);
|
|
19
19
|
assert.equal(input0.height, input1.height, `input0.height(=${input0.height}) is not equal to input1.height(=${input1.height})`);
|