@thi.ng/webgl 6.9.9 → 6.9.10

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-07-22T13:15:57Z
3
+ - **Last updated**: 2024-08-10T15:03:07Z
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/webgl",
3
- "version": "6.9.9",
3
+ "version": "6.9.10",
4
4
  "description": "WebGL & GLSL abstraction layer",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -40,28 +40,28 @@
40
40
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
41
41
  },
42
42
  "dependencies": {
43
- "@thi.ng/api": "^8.11.7",
44
- "@thi.ng/canvas": "^0.4.0",
45
- "@thi.ng/checks": "^3.6.9",
46
- "@thi.ng/equiv": "^2.1.63",
47
- "@thi.ng/errors": "^2.5.13",
48
- "@thi.ng/logger": "^3.0.17",
49
- "@thi.ng/matrices": "^2.4.6",
50
- "@thi.ng/memoize": "^3.3.9",
51
- "@thi.ng/object-utils": "^1.1.0",
52
- "@thi.ng/pixel": "^7.2.1",
53
- "@thi.ng/shader-ast": "^0.15.23",
54
- "@thi.ng/shader-ast-glsl": "^0.4.131",
55
- "@thi.ng/shader-ast-stdlib": "^0.18.23",
56
- "@thi.ng/transducers": "^9.0.12",
57
- "@thi.ng/vector-pools": "^3.2.6",
58
- "@thi.ng/vectors": "^7.11.6"
43
+ "@thi.ng/api": "^8.11.8",
44
+ "@thi.ng/canvas": "^0.5.0",
45
+ "@thi.ng/checks": "^3.6.10",
46
+ "@thi.ng/equiv": "^2.1.64",
47
+ "@thi.ng/errors": "^2.5.14",
48
+ "@thi.ng/logger": "^3.0.18",
49
+ "@thi.ng/matrices": "^2.4.7",
50
+ "@thi.ng/memoize": "^3.3.10",
51
+ "@thi.ng/object-utils": "^1.1.1",
52
+ "@thi.ng/pixel": "^7.3.0",
53
+ "@thi.ng/shader-ast": "^0.15.24",
54
+ "@thi.ng/shader-ast-glsl": "^0.4.132",
55
+ "@thi.ng/shader-ast-stdlib": "^0.18.24",
56
+ "@thi.ng/transducers": "^9.0.13",
57
+ "@thi.ng/vector-pools": "^3.2.7",
58
+ "@thi.ng/vectors": "^7.11.7"
59
59
  },
60
60
  "devDependencies": {
61
- "@microsoft/api-extractor": "^7.47.0",
61
+ "@microsoft/api-extractor": "^7.47.5",
62
62
  "esbuild": "^0.23.0",
63
- "typedoc": "^0.26.3",
64
- "typescript": "^5.5.3"
63
+ "typedoc": "^0.26.5",
64
+ "typescript": "^5.5.4"
65
65
  },
66
66
  "keywords": [
67
67
  "2d",
@@ -69,12 +69,16 @@
69
69
  "animation",
70
70
  "blend",
71
71
  "browser",
72
+ "buffer",
72
73
  "canvas",
73
74
  "datastructure",
74
75
  "declarative",
76
+ "fbo",
75
77
  "glsl",
76
78
  "gpgpu",
77
79
  "graphics",
80
+ "multipass",
81
+ "pipeline",
78
82
  "shader",
79
83
  "shader-ast",
80
84
  "texture",
@@ -220,5 +224,5 @@
220
224
  ],
221
225
  "year": 2014
222
226
  },
223
- "gitHead": "74b023c95ab8219fd4192ef2a02962b2e2038563\n"
227
+ "gitHead": "ec78f98d015e4d214a0b840e72e497407807daf3\n"
224
228
  }
@@ -5,5 +5,5 @@ export interface CheckerboardOpts {
5
5
  corners: boolean;
6
6
  cornerCols: number[];
7
7
  }
8
- export declare const checkerboard: (opts: Partial<CheckerboardOpts>) => HTMLCanvasElement | OffscreenCanvas;
8
+ export declare const checkerboard: (opts: Partial<CheckerboardOpts>) => HTMLCanvasElement;
9
9
  //# sourceMappingURL=checkerboard.d.ts.map
@@ -4,5 +4,5 @@ export interface StripeOpts {
4
4
  col2: number;
5
5
  horizontal: boolean;
6
6
  }
7
- export declare const stripes: (opts: Partial<StripeOpts>) => HTMLCanvasElement | OffscreenCanvas;
7
+ export declare const stripes: (opts: Partial<StripeOpts>) => HTMLCanvasElement;
8
8
  //# sourceMappingURL=stripes.d.ts.map