@thi.ng/webgl 6.8.1 → 6.8.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-03-09T13:46:38Z
3
+ - **Last updated**: 2024-03-13T14:04:31Z
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/error.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  /// <reference types="node" />
2
2
  export declare const WebGLError: {
3
3
  new (msg?: string | undefined): {
4
+ origMessage: string;
4
5
  name: string;
5
6
  message: string;
6
7
  stack?: string | undefined;
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.1",
3
+ "version": "6.8.2",
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.29",
44
- "@thi.ng/associative": "^6.3.47",
45
- "@thi.ng/canvas": "^0.2.11",
46
- "@thi.ng/checks": "^3.5.2",
47
- "@thi.ng/equiv": "^2.1.51",
48
- "@thi.ng/errors": "^2.4.20",
49
- "@thi.ng/logger": "^3.0.5",
50
- "@thi.ng/matrices": "^2.3.23",
51
- "@thi.ng/memoize": "^3.1.64",
52
- "@thi.ng/pixel": "^6.1.18",
53
- "@thi.ng/shader-ast": "^0.15.2",
54
- "@thi.ng/shader-ast-glsl": "^0.4.110",
55
- "@thi.ng/shader-ast-stdlib": "^0.18.2",
56
- "@thi.ng/transducers": "^8.9.11",
57
- "@thi.ng/vector-pools": "^3.1.115",
58
- "@thi.ng/vectors": "^7.10.17"
43
+ "@thi.ng/api": "^8.9.30",
44
+ "@thi.ng/associative": "^6.3.48",
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.0",
49
+ "@thi.ng/logger": "^3.0.6",
50
+ "@thi.ng/matrices": "^2.3.24",
51
+ "@thi.ng/memoize": "^3.1.65",
52
+ "@thi.ng/pixel": "^6.1.19",
53
+ "@thi.ng/shader-ast": "^0.15.3",
54
+ "@thi.ng/shader-ast-glsl": "^0.4.111",
55
+ "@thi.ng/shader-ast-stdlib": "^0.18.3",
56
+ "@thi.ng/transducers": "^8.9.12",
57
+ "@thi.ng/vector-pools": "^3.1.116",
58
+ "@thi.ng/vectors": "^7.10.18"
59
59
  },
60
60
  "devDependencies": {
61
- "@microsoft/api-extractor": "^7.40.1",
62
- "esbuild": "^0.20.0",
61
+ "@microsoft/api-extractor": "^7.42.3",
62
+ "esbuild": "^0.20.1",
63
63
  "rimraf": "^5.0.5",
64
- "typedoc": "^0.25.7",
65
- "typescript": "^5.3.3"
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": "0d3bacf526db92363b43e81356e8cef18368272a\n"
223
+ "gitHead": "7f3fcbd6c0462b0ce45afa141fe163d1f297fd51\n"
224
224
  }