@thi.ng/webgl 6.9.105 → 6.9.107

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/README.md +1 -1
  2. package/buffer.d.ts +1 -1
  3. package/package.json +20 -20
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  [![Mastodon Follow](https://img.shields.io/mastodon/follow/109331703950160316?domain=https%3A%2F%2Fmastodon.thi.ng&style=social)](https://mastodon.thi.ng/@toxi)
8
8
 
9
9
  > [!NOTE]
10
- > This is one of 214 standalone projects, maintained as part
10
+ > This is one of 215 standalone projects, maintained as part
11
11
  > of the [@thi.ng/umbrella](https://codeberg.org/thi.ng/umbrella/) ecosystem
12
12
  > and anti-framework.
13
13
  >
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.107",
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.20",
48
+ "@thi.ng/canvas": "^1.1.12",
49
+ "@thi.ng/checks": "^3.9.0",
50
+ "@thi.ng/equiv": "^2.1.109",
51
+ "@thi.ng/errors": "^2.6.9",
52
+ "@thi.ng/logger": "^3.3.3",
53
+ "@thi.ng/matrices": "^3.0.44",
54
+ "@thi.ng/memoize": "^4.0.44",
55
+ "@thi.ng/object-utils": "^1.3.12",
56
+ "@thi.ng/pixel": "^7.5.29",
57
+ "@thi.ng/shader-ast": "^1.1.47",
58
+ "@thi.ng/shader-ast-glsl": "^1.0.66",
59
+ "@thi.ng/shader-ast-stdlib": "^1.0.66",
60
+ "@thi.ng/transducers": "^9.6.33",
61
+ "@thi.ng/vector-pools": "^3.2.97",
62
+ "@thi.ng/vectors": "^8.6.29"
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": "92be63f24030506f09d6d156804da2798c381dc4"
232
232
  }