@thi.ng/webgl 6.6.35 → 6.6.36
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/fbo.d.ts +4 -2
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
package/fbo.d.ts
CHANGED
|
@@ -6,9 +6,11 @@ import type { FboOpts, IFbo } from "./api/buffers.js";
|
|
|
6
6
|
* available. The max. number of attachments can be obtained via the
|
|
7
7
|
* `maxAttachments` property of the FBO instance.
|
|
8
8
|
*
|
|
9
|
-
* ```
|
|
9
|
+
* ```ts
|
|
10
|
+
* import { defFBO } from "@thi.ng/webgl";
|
|
11
|
+
*
|
|
10
12
|
* // create FBO w/ 2 render targets
|
|
11
|
-
* fbo =
|
|
13
|
+
* fbo = defFBO(gl, { tex: [tex1, tex2] });
|
|
12
14
|
* ```
|
|
13
15
|
*
|
|
14
16
|
* https://developer.mozilla.org/en-US/docs/Web/API/WEBGL_draw_buffers
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/webgl",
|
|
3
|
-
"version": "6.6.
|
|
3
|
+
"version": "6.6.36",
|
|
4
4
|
"description": "WebGL & GLSL abstraction layer",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -40,21 +40,21 @@
|
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@thi.ng/api": "^8.9.27",
|
|
43
|
-
"@thi.ng/associative": "^6.3.
|
|
43
|
+
"@thi.ng/associative": "^6.3.45",
|
|
44
44
|
"@thi.ng/canvas": "^0.2.8",
|
|
45
45
|
"@thi.ng/checks": "^3.5.1",
|
|
46
46
|
"@thi.ng/equiv": "^2.1.50",
|
|
47
47
|
"@thi.ng/errors": "^2.4.19",
|
|
48
48
|
"@thi.ng/logger": "^3.0.4",
|
|
49
|
-
"@thi.ng/matrices": "^2.3.
|
|
50
|
-
"@thi.ng/memoize": "^3.1.
|
|
51
|
-
"@thi.ng/pixel": "^6.1.
|
|
52
|
-
"@thi.ng/shader-ast": "^0.13.
|
|
53
|
-
"@thi.ng/shader-ast-glsl": "^0.4.
|
|
54
|
-
"@thi.ng/shader-ast-stdlib": "^0.16.
|
|
55
|
-
"@thi.ng/transducers": "^8.9.
|
|
56
|
-
"@thi.ng/vector-pools": "^3.1.
|
|
57
|
-
"@thi.ng/vectors": "^7.10.
|
|
49
|
+
"@thi.ng/matrices": "^2.3.21",
|
|
50
|
+
"@thi.ng/memoize": "^3.1.62",
|
|
51
|
+
"@thi.ng/pixel": "^6.1.15",
|
|
52
|
+
"@thi.ng/shader-ast": "^0.13.16",
|
|
53
|
+
"@thi.ng/shader-ast-glsl": "^0.4.106",
|
|
54
|
+
"@thi.ng/shader-ast-stdlib": "^0.16.31",
|
|
55
|
+
"@thi.ng/transducers": "^8.9.9",
|
|
56
|
+
"@thi.ng/vector-pools": "^3.1.113",
|
|
57
|
+
"@thi.ng/vectors": "^7.10.15"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@microsoft/api-extractor": "^7.40.1",
|
|
@@ -219,5 +219,5 @@
|
|
|
219
219
|
],
|
|
220
220
|
"year": 2014
|
|
221
221
|
},
|
|
222
|
-
"gitHead": "
|
|
222
|
+
"gitHead": "df9e312af741d87e6b450afcfea6a6e381662b1e\n"
|
|
223
223
|
}
|