@thi.ng/webgl 6.9.109 → 6.9.112
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/README.md +5 -3
- package/buffer.d.ts +1 -1
- package/package.json +20 -20
package/README.md
CHANGED
|
@@ -7,9 +7,11 @@
|
|
|
7
7
|
[](https://mastodon.thi.ng/@toxi)
|
|
8
8
|
|
|
9
9
|
> [!NOTE]
|
|
10
|
-
|
|
11
|
-
> of
|
|
12
|
-
>
|
|
10
|
+
|
|
11
|
+
> This is one of 215 standalone projects. LLM-free, human-made and
|
|
12
|
+
> cared for software, maintained as part of the
|
|
13
|
+
> [@thi.ng/umbrella](https://codeberg.org/thi.ng/umbrella/) ecosystem and
|
|
14
|
+
> anti-framework.
|
|
13
15
|
>
|
|
14
16
|
> 🚀 Please help me to work full-time on these projects by [sponsoring
|
|
15
17
|
> me](https://codeberg.org/thi.ng/umbrella/src/branch/develop/CONTRIBUTING.md#donations).
|
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<Int8Array<ArrayBufferLike> |
|
|
27
|
+
export declare const defBuffer: (gl: WebGLRenderingContext, data?: TypedArray, target?: GLenum, mode?: GLenum, retain?: boolean) => WebGLArrayBuffer<Int8Array<ArrayBufferLike> | Int16Array<ArrayBufferLike> | Int32Array<ArrayBufferLike> | Uint8Array<ArrayBufferLike> | Uint8ClampedArray<ArrayBufferLike> | Uint16Array<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.
|
|
3
|
+
"version": "6.9.112",
|
|
4
4
|
"description": "WebGL & GLSL abstraction layer",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -44,27 +44,27 @@
|
|
|
44
44
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@thi.ng/api": "^8.12.
|
|
48
|
-
"@thi.ng/canvas": "^1.1.
|
|
49
|
-
"@thi.ng/checks": "^3.9.
|
|
50
|
-
"@thi.ng/equiv": "^2.1.
|
|
51
|
-
"@thi.ng/errors": "^2.6.
|
|
52
|
-
"@thi.ng/logger": "^3.3.
|
|
53
|
-
"@thi.ng/matrices": "^3.0.
|
|
54
|
-
"@thi.ng/memoize": "^4.0.
|
|
55
|
-
"@thi.ng/object-utils": "^1.3.
|
|
56
|
-
"@thi.ng/pixel": "^7.5.
|
|
57
|
-
"@thi.ng/shader-ast": "^1.1.
|
|
58
|
-
"@thi.ng/shader-ast-glsl": "^1.0.
|
|
59
|
-
"@thi.ng/shader-ast-stdlib": "^1.0.
|
|
60
|
-
"@thi.ng/transducers": "^9.6.
|
|
61
|
-
"@thi.ng/vector-pools": "^3.2.
|
|
62
|
-
"@thi.ng/vectors": "^8.6.
|
|
47
|
+
"@thi.ng/api": "^8.12.24",
|
|
48
|
+
"@thi.ng/canvas": "^1.1.16",
|
|
49
|
+
"@thi.ng/checks": "^3.9.4",
|
|
50
|
+
"@thi.ng/equiv": "^2.1.113",
|
|
51
|
+
"@thi.ng/errors": "^2.6.13",
|
|
52
|
+
"@thi.ng/logger": "^3.3.7",
|
|
53
|
+
"@thi.ng/matrices": "^3.0.49",
|
|
54
|
+
"@thi.ng/memoize": "^4.0.48",
|
|
55
|
+
"@thi.ng/object-utils": "^1.3.16",
|
|
56
|
+
"@thi.ng/pixel": "^7.5.33",
|
|
57
|
+
"@thi.ng/shader-ast": "^1.1.52",
|
|
58
|
+
"@thi.ng/shader-ast-glsl": "^1.0.71",
|
|
59
|
+
"@thi.ng/shader-ast-stdlib": "^1.0.71",
|
|
60
|
+
"@thi.ng/transducers": "^9.6.38",
|
|
61
|
+
"@thi.ng/vector-pools": "^3.2.102",
|
|
62
|
+
"@thi.ng/vectors": "^8.6.34"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
65
|
"esbuild": "^0.28.0",
|
|
66
|
-
"typedoc": "^0.28.
|
|
67
|
-
"typescript": "^
|
|
66
|
+
"typedoc": "^0.28.19",
|
|
67
|
+
"typescript": "^6.0.3"
|
|
68
68
|
},
|
|
69
69
|
"keywords": [
|
|
70
70
|
"2d",
|
|
@@ -228,5 +228,5 @@
|
|
|
228
228
|
],
|
|
229
229
|
"year": 2014
|
|
230
230
|
},
|
|
231
|
-
"gitHead": "
|
|
231
|
+
"gitHead": "b302822c51b2ab255f8f27f8dd010433d95f29df"
|
|
232
232
|
}
|