@thi.ng/webgl 6.9.7 → 6.9.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/webgl",
3
- "version": "6.9.7",
3
+ "version": "6.9.9",
4
4
  "description": "WebGL & GLSL abstraction layer",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -41,7 +41,7 @@
41
41
  },
42
42
  "dependencies": {
43
43
  "@thi.ng/api": "^8.11.7",
44
- "@thi.ng/canvas": "^0.2.24",
44
+ "@thi.ng/canvas": "^0.4.0",
45
45
  "@thi.ng/checks": "^3.6.9",
46
46
  "@thi.ng/equiv": "^2.1.63",
47
47
  "@thi.ng/errors": "^2.5.13",
@@ -49,7 +49,7 @@
49
49
  "@thi.ng/matrices": "^2.4.6",
50
50
  "@thi.ng/memoize": "^3.3.9",
51
51
  "@thi.ng/object-utils": "^1.1.0",
52
- "@thi.ng/pixel": "^7.1.0",
52
+ "@thi.ng/pixel": "^7.2.1",
53
53
  "@thi.ng/shader-ast": "^0.15.23",
54
54
  "@thi.ng/shader-ast-glsl": "^0.4.131",
55
55
  "@thi.ng/shader-ast-stdlib": "^0.18.23",
@@ -220,5 +220,5 @@
220
220
  ],
221
221
  "year": 2014
222
222
  },
223
- "gitHead": "ec052b25dff4db6c4d1748e946c38fb5cf403dbf\n"
223
+ "gitHead": "74b023c95ab8219fd4192ef2a02962b2e2038563\n"
224
224
  }
@@ -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;
8
+ export declare const checkerboard: (opts: Partial<CheckerboardOpts>) => HTMLCanvasElement | OffscreenCanvas;
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;
7
+ export declare const stripes: (opts: Partial<StripeOpts>) => HTMLCanvasElement | OffscreenCanvas;
8
8
  //# sourceMappingURL=stripes.d.ts.map