@thi.ng/webgl 6.1.7 → 6.1.8
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/CHANGELOG.md +1 -1
- package/README.md +1 -1
- package/multipass.d.ts +2 -2
- package/multipass.js +2 -2
- package/package.json +22 -22
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
package/multipass.d.ts
CHANGED
|
@@ -11,8 +11,8 @@ export declare const defMultiPass: (opts: MultipassOpts) => Multipass;
|
|
|
11
11
|
*
|
|
12
12
|
* WebGL2 only (uses `texelFetch()`)
|
|
13
13
|
*
|
|
14
|
-
* @param src
|
|
15
|
-
* @param dest
|
|
14
|
+
* @param src -
|
|
15
|
+
* @param dest -
|
|
16
16
|
*/
|
|
17
17
|
export declare const passCopy: (src: string[], dest: string[]) => PassOpts;
|
|
18
18
|
//# sourceMappingURL=multipass.d.ts.map
|
package/multipass.js
CHANGED
|
@@ -152,8 +152,8 @@ const initBuffers = (opts, textures, useMainBuffer) => (useMainBuffer
|
|
|
152
152
|
*
|
|
153
153
|
* WebGL2 only (uses `texelFetch()`)
|
|
154
154
|
*
|
|
155
|
-
* @param src
|
|
156
|
-
* @param dest
|
|
155
|
+
* @param src -
|
|
156
|
+
* @param dest -
|
|
157
157
|
*/
|
|
158
158
|
export const passCopy = (src, dest) => {
|
|
159
159
|
assert(src.length === dest.length, `require same number of in/out textures`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/webgl",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.8",
|
|
4
4
|
"description": "WebGL & GLSL abstraction layer",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,30 +34,30 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/adapt-dpi": "^2.1.
|
|
38
|
-
"@thi.ng/api": "^8.3.
|
|
39
|
-
"@thi.ng/associative": "^6.1.
|
|
40
|
-
"@thi.ng/checks": "^3.1.
|
|
41
|
-
"@thi.ng/equiv": "^2.1.
|
|
42
|
-
"@thi.ng/errors": "^2.1.
|
|
43
|
-
"@thi.ng/logger": "^1.1.
|
|
44
|
-
"@thi.ng/matrices": "^2.1.
|
|
45
|
-
"@thi.ng/memoize": "^3.1.
|
|
46
|
-
"@thi.ng/pixel": "^3.3.
|
|
47
|
-
"@thi.ng/shader-ast": "^0.12.
|
|
48
|
-
"@thi.ng/shader-ast-glsl": "^0.4.
|
|
49
|
-
"@thi.ng/shader-ast-stdlib": "^0.11.
|
|
50
|
-
"@thi.ng/transducers": "^8.
|
|
51
|
-
"@thi.ng/vector-pools": "^3.1.
|
|
52
|
-
"@thi.ng/vectors": "^7.
|
|
37
|
+
"@thi.ng/adapt-dpi": "^2.1.4",
|
|
38
|
+
"@thi.ng/api": "^8.3.4",
|
|
39
|
+
"@thi.ng/associative": "^6.1.5",
|
|
40
|
+
"@thi.ng/checks": "^3.1.4",
|
|
41
|
+
"@thi.ng/equiv": "^2.1.4",
|
|
42
|
+
"@thi.ng/errors": "^2.1.4",
|
|
43
|
+
"@thi.ng/logger": "^1.1.4",
|
|
44
|
+
"@thi.ng/matrices": "^2.1.8",
|
|
45
|
+
"@thi.ng/memoize": "^3.1.4",
|
|
46
|
+
"@thi.ng/pixel": "^3.3.2",
|
|
47
|
+
"@thi.ng/shader-ast": "^0.12.5",
|
|
48
|
+
"@thi.ng/shader-ast-glsl": "^0.4.5",
|
|
49
|
+
"@thi.ng/shader-ast-stdlib": "^0.11.5",
|
|
50
|
+
"@thi.ng/transducers": "^8.3.0",
|
|
51
|
+
"@thi.ng/vector-pools": "^3.1.8",
|
|
52
|
+
"@thi.ng/vectors": "^7.5.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@microsoft/api-extractor": "^7.19.
|
|
56
|
-
"@thi.ng/testament": "^0.2.
|
|
55
|
+
"@microsoft/api-extractor": "^7.19.4",
|
|
56
|
+
"@thi.ng/testament": "^0.2.4",
|
|
57
57
|
"rimraf": "^3.0.2",
|
|
58
58
|
"tools": "^0.0.1",
|
|
59
|
-
"typedoc": "^0.22.
|
|
60
|
-
"typescript": "^4.
|
|
59
|
+
"typedoc": "^0.22.13",
|
|
60
|
+
"typescript": "^4.6.2"
|
|
61
61
|
},
|
|
62
62
|
"keywords": [
|
|
63
63
|
"2d",
|
|
@@ -215,5 +215,5 @@
|
|
|
215
215
|
],
|
|
216
216
|
"year": 2014
|
|
217
217
|
},
|
|
218
|
-
"gitHead": "
|
|
218
|
+
"gitHead": "0fc692a3225c068aacafdc4cb6140cf603c67ad8\n"
|
|
219
219
|
}
|