@thi.ng/webgl 6.9.105 → 6.9.106

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 (2) hide show
  1. package/buffer.d.ts +1 -1
  2. package/package.json +20 -20
package/buffer.d.ts CHANGED
@@ -24,7 +24,7 @@ export declare class WebGLArrayBuffer<T extends TypedArray> implements IWebGLBuf
24
24
  set(data: T, mode?: number): void;
25
25
  setChunk(data: T, byteOffset?: number): void;
26
26
  }
27
- export declare const defBuffer: (gl: WebGLRenderingContext, data?: TypedArray, target?: GLenum, mode?: GLenum, retain?: boolean) => WebGLArrayBuffer<Float32Array<ArrayBufferLike> | Float64Array<ArrayBufferLike> | Int8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Uint8ClampedArray<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike>>;
27
+ export declare const defBuffer: (gl: WebGLRenderingContext, data?: TypedArray, target?: GLenum, mode?: GLenum, retain?: boolean) => WebGLArrayBuffer<Int8Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Uint8ClampedArray<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Uint16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint32Array<ArrayBufferLike> | Float32Array<ArrayBufferLike> | Float64Array<ArrayBufferLike>>;
28
28
  /**
29
29
  * Takes a model spec (or array of specs) and compiles all buffers (attributes,
30
30
  * indices) and shaders (if not already compiled), then returns compiled spec(s),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/webgl",
3
- "version": "6.9.105",
3
+ "version": "6.9.106",
4
4
  "description": "WebGL & GLSL abstraction layer",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -44,26 +44,26 @@
44
44
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
45
45
  },
46
46
  "dependencies": {
47
- "@thi.ng/api": "^8.12.18",
48
- "@thi.ng/canvas": "^1.1.10",
49
- "@thi.ng/checks": "^3.8.8",
50
- "@thi.ng/equiv": "^2.1.107",
51
- "@thi.ng/errors": "^2.6.7",
52
- "@thi.ng/logger": "^3.3.1",
53
- "@thi.ng/matrices": "^3.0.42",
54
- "@thi.ng/memoize": "^4.0.42",
55
- "@thi.ng/object-utils": "^1.3.10",
56
- "@thi.ng/pixel": "^7.5.27",
57
- "@thi.ng/shader-ast": "^1.1.45",
58
- "@thi.ng/shader-ast-glsl": "^1.0.64",
59
- "@thi.ng/shader-ast-stdlib": "^1.0.64",
60
- "@thi.ng/transducers": "^9.6.31",
61
- "@thi.ng/vector-pools": "^3.2.95",
62
- "@thi.ng/vectors": "^8.6.27"
47
+ "@thi.ng/api": "^8.12.19",
48
+ "@thi.ng/canvas": "^1.1.11",
49
+ "@thi.ng/checks": "^3.8.9",
50
+ "@thi.ng/equiv": "^2.1.108",
51
+ "@thi.ng/errors": "^2.6.8",
52
+ "@thi.ng/logger": "^3.3.2",
53
+ "@thi.ng/matrices": "^3.0.43",
54
+ "@thi.ng/memoize": "^4.0.43",
55
+ "@thi.ng/object-utils": "^1.3.11",
56
+ "@thi.ng/pixel": "^7.5.28",
57
+ "@thi.ng/shader-ast": "^1.1.46",
58
+ "@thi.ng/shader-ast-glsl": "^1.0.65",
59
+ "@thi.ng/shader-ast-stdlib": "^1.0.65",
60
+ "@thi.ng/transducers": "^9.6.32",
61
+ "@thi.ng/vector-pools": "^3.2.96",
62
+ "@thi.ng/vectors": "^8.6.28"
63
63
  },
64
64
  "devDependencies": {
65
- "esbuild": "^0.27.2",
66
- "typedoc": "^0.28.16",
65
+ "esbuild": "^0.28.0",
66
+ "typedoc": "^0.28.18",
67
67
  "typescript": "^5.9.3"
68
68
  },
69
69
  "keywords": [
@@ -228,5 +228,5 @@
228
228
  ],
229
229
  "year": 2014
230
230
  },
231
- "gitHead": "929fb6590178a41cbb77cbb87e07c59c61381607\n"
231
+ "gitHead": "a780d4a5f6f5fc595c9d28527686f63534927d32"
232
232
  }