@thi.ng/webgl 6.8.1 → 6.8.3
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/error.d.ts +1 -0
- package/multipass.d.ts +9 -0
- package/package.json +22 -22
package/CHANGELOG.md
CHANGED
package/error.d.ts
CHANGED
package/multipass.d.ts
CHANGED
|
@@ -15,5 +15,14 @@ export declare const defMultiPass: (opts: MultipassOpts) => Multipass;
|
|
|
15
15
|
* @param dest -
|
|
16
16
|
*/
|
|
17
17
|
export declare const passCopy: (src: string[], dest: string[]) => PassOpts;
|
|
18
|
+
/**
|
|
19
|
+
* Generates a shader pass spec which copies given named texture `src` to the
|
|
20
|
+
* main drawing buffer as final step in a {@link defMultiPass} pipeline.
|
|
21
|
+
*
|
|
22
|
+
* @remarks
|
|
23
|
+
* WebGL2 only (uses `texelFetch()`)
|
|
24
|
+
*
|
|
25
|
+
* @param src
|
|
26
|
+
*/
|
|
18
27
|
export declare const passCopyMain: (src: string) => PassOpts;
|
|
19
28
|
//# sourceMappingURL=multipass.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/webgl",
|
|
3
|
-
"version": "6.8.
|
|
3
|
+
"version": "6.8.3",
|
|
4
4
|
"description": "WebGL & GLSL abstraction layer",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -40,29 +40,29 @@
|
|
|
40
40
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@thi.ng/api": "^8.9.
|
|
44
|
-
"@thi.ng/associative": "^6.3.
|
|
45
|
-
"@thi.ng/canvas": "^0.2.
|
|
46
|
-
"@thi.ng/checks": "^3.5.
|
|
47
|
-
"@thi.ng/equiv": "^2.1.
|
|
48
|
-
"@thi.ng/errors": "^2.
|
|
49
|
-
"@thi.ng/logger": "^3.0.
|
|
50
|
-
"@thi.ng/matrices": "^2.3.
|
|
51
|
-
"@thi.ng/memoize": "^3.1.
|
|
52
|
-
"@thi.ng/pixel": "^6.1.
|
|
53
|
-
"@thi.ng/shader-ast": "^0.15.
|
|
54
|
-
"@thi.ng/shader-ast-glsl": "^0.4.
|
|
55
|
-
"@thi.ng/shader-ast-stdlib": "^0.18.
|
|
56
|
-
"@thi.ng/transducers": "^8.9.
|
|
57
|
-
"@thi.ng/vector-pools": "^3.1.
|
|
58
|
-
"@thi.ng/vectors": "^7.10.
|
|
43
|
+
"@thi.ng/api": "^8.9.30",
|
|
44
|
+
"@thi.ng/associative": "^6.3.49",
|
|
45
|
+
"@thi.ng/canvas": "^0.2.12",
|
|
46
|
+
"@thi.ng/checks": "^3.5.3",
|
|
47
|
+
"@thi.ng/equiv": "^2.1.52",
|
|
48
|
+
"@thi.ng/errors": "^2.5.1",
|
|
49
|
+
"@thi.ng/logger": "^3.0.6",
|
|
50
|
+
"@thi.ng/matrices": "^2.3.25",
|
|
51
|
+
"@thi.ng/memoize": "^3.1.65",
|
|
52
|
+
"@thi.ng/pixel": "^6.1.20",
|
|
53
|
+
"@thi.ng/shader-ast": "^0.15.4",
|
|
54
|
+
"@thi.ng/shader-ast-glsl": "^0.4.112",
|
|
55
|
+
"@thi.ng/shader-ast-stdlib": "^0.18.4",
|
|
56
|
+
"@thi.ng/transducers": "^8.9.13",
|
|
57
|
+
"@thi.ng/vector-pools": "^3.1.117",
|
|
58
|
+
"@thi.ng/vectors": "^7.10.19"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@microsoft/api-extractor": "^7.
|
|
62
|
-
"esbuild": "^0.20.
|
|
61
|
+
"@microsoft/api-extractor": "^7.42.3",
|
|
62
|
+
"esbuild": "^0.20.1",
|
|
63
63
|
"rimraf": "^5.0.5",
|
|
64
|
-
"typedoc": "^0.25.
|
|
65
|
-
"typescript": "^5.
|
|
64
|
+
"typedoc": "^0.25.12",
|
|
65
|
+
"typescript": "^5.4.2"
|
|
66
66
|
},
|
|
67
67
|
"keywords": [
|
|
68
68
|
"2d",
|
|
@@ -220,5 +220,5 @@
|
|
|
220
220
|
],
|
|
221
221
|
"year": 2014
|
|
222
222
|
},
|
|
223
|
-
"gitHead": "
|
|
223
|
+
"gitHead": "bc0f3cb07d6f1cab6dbdc5ff57428f5484e711bb\n"
|
|
224
224
|
}
|