@thi.ng/webgl 6.9.25 → 6.9.27

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-11-10T17:11:51Z
3
+ - **Last updated**: 2024-12-12T10:11:58Z
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/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 | Float64Array | Int8Array | Int16Array | Int32Array | Uint8Array | Uint8ClampedArray | Uint16Array | Uint32Array>;
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>>;
28
28
  /**
29
29
  * Takes a model spec and compiles all buffers (attributes, indices) and shader
30
30
  * (if not already compiled), then returns compiled spec, ready for use with
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/webgl",
3
- "version": "6.9.25",
3
+ "version": "6.9.27",
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.12",
44
- "@thi.ng/canvas": "^0.5.5",
45
- "@thi.ng/checks": "^3.6.14",
46
- "@thi.ng/equiv": "^2.1.68",
47
- "@thi.ng/errors": "^2.5.18",
48
- "@thi.ng/logger": "^3.0.22",
49
- "@thi.ng/matrices": "^2.4.21",
50
- "@thi.ng/memoize": "^4.0.2",
51
- "@thi.ng/object-utils": "^1.1.5",
52
- "@thi.ng/pixel": "^7.3.7",
53
- "@thi.ng/shader-ast": "^0.15.35",
54
- "@thi.ng/shader-ast-glsl": "^0.4.143",
55
- "@thi.ng/shader-ast-stdlib": "^0.18.35",
56
- "@thi.ng/transducers": "^9.2.8",
57
- "@thi.ng/vector-pools": "^3.2.21",
58
- "@thi.ng/vectors": "^7.12.9"
43
+ "@thi.ng/api": "^8.11.14",
44
+ "@thi.ng/canvas": "^0.5.7",
45
+ "@thi.ng/checks": "^3.6.16",
46
+ "@thi.ng/equiv": "^2.1.70",
47
+ "@thi.ng/errors": "^2.5.20",
48
+ "@thi.ng/logger": "^3.0.24",
49
+ "@thi.ng/matrices": "^2.4.23",
50
+ "@thi.ng/memoize": "^4.0.4",
51
+ "@thi.ng/object-utils": "^1.1.7",
52
+ "@thi.ng/pixel": "^7.3.9",
53
+ "@thi.ng/shader-ast": "^0.15.37",
54
+ "@thi.ng/shader-ast-glsl": "^0.4.145",
55
+ "@thi.ng/shader-ast-stdlib": "^0.18.37",
56
+ "@thi.ng/transducers": "^9.2.10",
57
+ "@thi.ng/vector-pools": "^3.2.23",
58
+ "@thi.ng/vectors": "^7.12.11"
59
59
  },
60
60
  "devDependencies": {
61
- "@microsoft/api-extractor": "^7.47.9",
61
+ "@microsoft/api-extractor": "^7.48.0",
62
62
  "esbuild": "^0.24.0",
63
- "typedoc": "^0.26.7",
64
- "typescript": "^5.6.2"
63
+ "typedoc": "^0.27.4",
64
+ "typescript": "^5.7.2"
65
65
  },
66
66
  "keywords": [
67
67
  "2d",
@@ -225,5 +225,5 @@
225
225
  ],
226
226
  "year": 2014
227
227
  },
228
- "gitHead": "ef89090bb19fc5bca23be5da8cfce05b82ff4ad1\n"
228
+ "gitHead": "34ac95538d96f046090fef5fd3a1dc36d54663d5\n"
229
229
  }