@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.
Files changed (3) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/fbo.d.ts +4 -2
  3. package/package.json +12 -12
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-03-01T15:22:50Z
3
+ - **Last updated**: 2024-03-02T14:05:53Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
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 = new FBO(gl, { tex: [tex1, tex2] });
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.35",
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.44",
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.20",
50
- "@thi.ng/memoize": "^3.1.61",
51
- "@thi.ng/pixel": "^6.1.14",
52
- "@thi.ng/shader-ast": "^0.13.15",
53
- "@thi.ng/shader-ast-glsl": "^0.4.105",
54
- "@thi.ng/shader-ast-stdlib": "^0.16.30",
55
- "@thi.ng/transducers": "^8.9.8",
56
- "@thi.ng/vector-pools": "^3.1.112",
57
- "@thi.ng/vectors": "^7.10.14"
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": "d660ae8fd1bf64d919b4334f19509f1f539d70f6\n"
222
+ "gitHead": "df9e312af741d87e6b450afcfea6a6e381662b1e\n"
223
223
  }